Skip to content

Commit

Permalink
fix: CI
Browse files Browse the repository at this point in the history
  • Loading branch information
matbme committed Jul 24, 2024
1 parent 619a678 commit 88cd877
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,24 @@ jobs:
apt install -y debhelper python3 gettext build-essential desktop-file-utils ninja-build meson libadwaita-1-dev make libnm-dev libnma-dev libnma-gtk4-dev
- name: Build .deb package
env:
VERSION: ${{ steps.get_version.outputs.VERSION }}
run: |
dpkg-buildpackage
mv ../vanilla-first-setup_${{ steps.get_version.outputs.VERSION }}_amd64.deb .
mv ../vanilla-first-setup_${VERSION}_amd64.deb .
- name: Calculate and Save Checksums
env:
VERSION: ${{ steps.get_version.outputs.VERSION }}
run: |
sha256sum vanilla-first-setup_${{ steps.get_version.outputs.VERSION }}_amd64.deb >> checksums.txt
sha256sum vanilla-first-setup_${VERSION}_amd64.deb >> checksums.txt
- uses: actions/upload-artifact@v4
with:
name: first-setup
path: |
checksums.txt
vanilla-first-setup_${{ steps.get_version.outputs.VERSION }}_amd64.deb
vanilla-first-setup_*_amd64.deb
- uses: softprops/action-gh-release@v2
if: github.ref == 'refs/heads/main'
Expand Down

0 comments on commit 88cd877

Please sign in to comment.