Skip to content

Commit

Permalink
copy deb to current dir
Browse files Browse the repository at this point in the history
  • Loading branch information
ampledata committed Jun 24, 2024
1 parent 4d75b06 commit e523c4c
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,13 @@ jobs:
run: dpkg-buildpackage -b

- name: List debian directory
run: ls -alR debian

- name: Find deb
run: find . -name *.deb
run: cp ../*.deb .

- name: Upload Artifacts to GitHub
uses: actions/upload-artifact@master
with:
name: artifact-deb
path: debian/*.deb
path: ./*.deb

- name: Create GitHub Release
id: create_release
Expand All @@ -55,7 +52,7 @@ jobs:
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: debian/*.deb
file: ./*.deb
tag: ${{ github.ref }}
overwrite: true
file_glob: true

0 comments on commit e523c4c

Please sign in to comment.