Skip to content

Commit

Permalink
update action
Browse files Browse the repository at this point in the history
  • Loading branch information
wilinz committed Jan 21, 2024
1 parent d782786 commit c183270
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build-linux-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,16 @@ jobs:
run: |
chmod 0777 ./gradlew
./gradlew packageDistributionForCurrentOS
ls build/compose/binaries/main
- name: Upload to Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: 'build/compose/binaries/main/deb/*.deb'
files:
- 'build/compose/binaries/main/deb/*'
- 'build/compose/binaries/main/rpm/*'
- 'build/compose/binaries/main/pkg/*'
- 'build/compose/binaries/main/appimage/*'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit c183270

Please sign in to comment.