forked from lix-project/lix-installer
ci: release-prs: fixup tagging behavior (#471)
This commit is contained in:
parent
5d0e28fcfb
commit
79a32a7c66
8
.github/workflows/release-prs.yml
vendored
8
.github/workflows/release-prs.yml
vendored
|
@ -12,7 +12,13 @@ jobs:
|
||||||
release:
|
release:
|
||||||
concurrency: release
|
concurrency: release
|
||||||
# Only intra-repo PRs are allowed to have PR artifacts uploaded
|
# Only intra-repo PRs are allowed to have PR artifacts uploaded
|
||||||
if: github.event.pull_request.head.repo.full_name == 'DeterminateSystems/nix-installer' && contains(github.event.pull_request.labels.*.name, 'upload to s3')
|
# We only want to trigger once the upload once in the case the upload label is added, not when any label is added
|
||||||
|
if: |
|
||||||
|
github.event.pull_request.head.repo.full_name == 'DeterminateSystems/nix-installer'
|
||||||
|
&& (
|
||||||
|
(github.event.action == 'labeled' && github.event.label.name == 'upload to s3')
|
||||||
|
|| (github.event.action != 'labeled' && contains(github.event.pull_request.labels.*.name, 'upload to s3'))
|
||||||
|
)
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
id-token: write # In order to request a JWT for AWS auth
|
id-token: write # In order to request a JWT for AWS auth
|
||||||
|
|
Loading…
Reference in a new issue