Skip to content

Commit

Permalink
chore: workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Adis Durakovic committed Mar 16, 2024
1 parent 769aba3 commit c2df9c5
Showing 1 changed file with 22 additions and 8 deletions.
30 changes: 22 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,26 @@ jobs:
with:
build-name: ${{ matrix.build.name }}
build-platform: ${{ matrix.build.platform }}
package: true
package: false
go-version: '1.21'
# release:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: softprops/action-gh-release@v2
# env:
# GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
- uses: actions/upload-artifact@v3
with:
name: Wails Build
path: |
*/bin/
*\bin\*
release:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/download-artifact@master
with:
path: |
*/bin/
*\bin\*
- uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with:
files: |
*/bin/*

0 comments on commit c2df9c5

Please sign in to comment.