Update build workflow to create Debian package and adjust release directory
All checks were successful
/ release (nightly) (push) Successful in 2m21s

This commit is contained in:
Edgar P. Burkhart 2025-05-14 12:54:36 +02:00
parent 86fc2c236e
commit fbb62b9006
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227
3 changed files with 18 additions and 9 deletions

View file

@ -25,9 +25,14 @@ jobs:
cd /tmp/phenix
mkdir -p /tmp/release
tar -czf /tmp/release/phenix_${{ github.ref_name }}.tar.gz .
- name: Make debian package
run: |
cargo install cargo-deb
cargo deb
cp target/debian/*.deb /tmp/release
- name: Make release
uses: actions/forgejo-release@v2.6.0
with:
direction: upload
release-dir: /tmp/phenix
release-dir: /tmp/release
token: ${{ secrets.FORGEJO_TOKEN }}