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 c183270 commit 1a9aa35
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-linux-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files:
- 'build/compose/binaries/main/deb/*'
- 'build/compose/binaries/main/rpm/*'
- 'build/compose/binaries/main/pkg/*'
- 'build/compose/binaries/main/appimage/*'
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 }}
6 changes: 3 additions & 3 deletions .github/workflows/build-windows-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ jobs:
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files:
- 'build/compose/binaries/main/msi/*.msi'
- 'innosetup/output/release/*.exe'
files: |
build/compose/binaries/main/msi/*.msi
innosetup/output/release/*.exe
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 1a9aa35

Please sign in to comment.