Skip to content

Commit

Permalink
feat: upload artefacts and push release
Browse files Browse the repository at this point in the history
  • Loading branch information
matteomiceli committed Jun 22, 2024
1 parent 7cbf078 commit 31dd7c6
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/app-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,16 @@ jobs:
run: chmod +x build/bin/*

# TODO: Release and upload assets
# - name: Upload artefacts
# uses:
# - name: Make release
# uses:
- name: Upload artefacts
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.build.name }}_${{ matrix.build.os }}
path: |
*/bin/
*\bin\*
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
*/bin/*

0 comments on commit 31dd7c6

Please sign in to comment.