Skip to content

Commit

Permalink
Add missing or statement for create-release
Browse files Browse the repository at this point in the history
  • Loading branch information
uyjulian committed Feb 19, 2021
1 parent 9c6512e commit bb77d35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
create-release:
needs: [build-ubuntu, build-win32, build-macos]
runs-on: ubuntu-20.04
if: github.ref == 'refs/heads/master'
if: startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/master'
steps:
- name: Download ubuntu artifact
uses: actions/download-artifact@v1
Expand Down

0 comments on commit bb77d35

Please sign in to comment.