Skip to content

Commit

Permalink
NOJ - Debian package release hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
gr211 committed Jun 20, 2024
1 parent 7e409fb commit 97cb1dd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ jobs:
DESTDIR: '/tmp/gohip-deb' # keep path absolute - meson has issues with relative paths on CI
run: |
mkdir -p $DESTDIR
GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} RELEASE_VERSION=${{ github.ref }} DESTDIR=$DESTDIR make debian-pkg
RELEASE_VERSION=$(echo ${{ github.ref }} | tr -d 'v')
GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} RELEASE_VERSION=$RELEASE_VERSION DESTDIR=$DESTDIR make debian-pkg
find $DESTDIR
- name: Upload Debian release
Expand Down

0 comments on commit 97cb1dd

Please sign in to comment.