Skip to content

Commit

Permalink
changes name of deb file
Browse files Browse the repository at this point in the history
  • Loading branch information
taukakao committed Feb 20, 2025
1 parent 4771c97 commit de82a75
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,18 @@ jobs:
- name: Build .deb package
run: |
dpkg-buildpackage
mv ../vanilla-first-setup_*.deb .
mv ../vanilla-first-setup_*.deb vanilla-first-setup.deb
- name: Calculate and Save Checksums
run: |
sha256sum vanilla-first-setup_*.deb >> checksums.txt
sha256sum vanilla-first-setup.deb >> checksums.txt
- uses: actions/upload-artifact@v4
with:
name: first-setup
path: |
checksums.txt
vanilla-first-setup_*.deb
vanilla-first-setup.deb
- uses: softprops/action-gh-release@v2
if: github.ref == 'refs/heads/main'
Expand All @@ -48,4 +48,4 @@ jobs:
name: "Continuous Build"
files: |
checksums.txt
vanilla-first-setup_*.deb
vanilla-first-setup.deb
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,18 @@ jobs:
- name: Build .deb package
run: |
dpkg-buildpackage
mv ../vanilla-first-setup_*.deb .
mv ../vanilla-first-setup_*.deb vanilla-first-setup.deb
- name: Calculate and Save Checksums
run: |
sha256sum vanilla-first-setup_*.deb >> checksums.txt
sha256sum vanilla-first-setup.deb >> checksums.txt
- uses: actions/upload-artifact@v4
with:
name: first-setup
path: |
checksums.txt
vanilla-first-setup_*.deb
vanilla-first-setup.deb
release:
runs-on: ubuntu-latest
Expand All @@ -68,10 +68,10 @@ jobs:
- name: Create Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release create "${{ github.ref_name }}" --generate-notes *.deb checksums.txt
run: gh release create "${{ github.ref_name }}" --generate-notes vanilla-first-setup.deb checksums.txt

- name: Attest Release Files
id: attest
uses: actions/attest-build-provenance@v1
with:
subject-path: '*.deb, *.txt'
subject-path: 'vanilla-first-setup.deb, checksums.txt'

0 comments on commit de82a75

Please sign in to comment.