Skip to content

Commit

Permalink
Merge pull request #31 from mikevanis/master
Browse files Browse the repository at this point in the history
Create release and upload binaries when tag is created
  • Loading branch information
mikevanis authored Sep 23, 2020
2 parents 0b8d001 + d81bf63 commit aba438a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
- name: Create Release
id: create_release
uses: actions/create-release@v1
if: startsWith(github.ref, 'v')
if: startsWith(github.ref, 'refs/tags/v')
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand All @@ -106,7 +106,7 @@ jobs:
- name: Upload app-combined.bin to Release
id: upload-release-asset-1
uses: actions/upload-release-asset@v1
if: startsWith(github.ref, 'v')
if: startsWith(github.ref, 'refs/tags/v')
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand All @@ -118,7 +118,7 @@ jobs:
- name: Upload app.bin to Release
id: upload-release-asset-2
uses: actions/upload-release-asset@v1
if: startsWith(github.ref, 'v')
if: startsWith(github.ref, 'refs/tags/v')
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down

0 comments on commit aba438a

Please sign in to comment.