Skip to content

Commit

Permalink
Get debian package name as separate step
Browse files Browse the repository at this point in the history
  • Loading branch information
RealOrangeOne committed Jul 1, 2023
1 parent 2ae5113 commit 4ee3127
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/debuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,11 @@ jobs:
sudo apt-get install --yes build-essential devscripts debhelper
- name: Build package
run: debuild -uc -us
- name: Get debian package name
run: |
echo "runusb_deb_path=$(realpath ../*.deb)" >> $GITHUB_ENV
- name: Save deb artifact
uses: actions/upload-artifact@v3
with:
name: runusb
path: ../*.deb
path: ${{ env.runusb_deb_path }}

0 comments on commit 4ee3127

Please sign in to comment.