CI: Fix release condition
This commit is contained in:
parent
d853a92623
commit
6bf32307c7
|
@ -61,12 +61,10 @@ jobs:
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
- uses: softprops/action-gh-release@v1
|
- uses: softprops/action-gh-release@v1
|
||||||
if: |
|
if: |
|
||||||
|
github.repository == 'xenia-canary/xenia-canary' &&
|
||||||
github.event.action != 'pull_request' &&
|
github.event.action != 'pull_request' &&
|
||||||
|
contains(github.ref, 'refs/heads/canary') &&
|
||||||
matrix.cpu_arch == 'AVX'
|
matrix.cpu_arch == 'AVX'
|
||||||
# github.repository == 'xenia-canary/xenia-canary' &&
|
|
||||||
# github.event.action != 'pull_request' &&
|
|
||||||
# contains(github.ref, 'refs/heads/canary') &&
|
|
||||||
# matrix.cpu_arch == 'AVX'
|
|
||||||
with:
|
with:
|
||||||
files: '*.zip'
|
files: '*.zip'
|
||||||
tag_name: ${{ steps.prepare_artifacts.outputs.short_commit_sha }}
|
tag_name: ${{ steps.prepare_artifacts.outputs.short_commit_sha }}
|
||||||
|
|
Loading…
Reference in New Issue