setup needs relationships
This commit is contained in:
parent
e6c72f9c32
commit
bff88ada04
3
.github/workflows/release-branches.yml
vendored
3
.github/workflows/release-branches.yml
vendored
|
@ -12,6 +12,9 @@ on:
|
|||
|
||||
jobs:
|
||||
release:
|
||||
needs:
|
||||
- build-artifacts-macOS
|
||||
- build-artifacts-Linux
|
||||
concurrency: release
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
|
|
5
.github/workflows/release-prs.yml
vendored
5
.github/workflows/release-prs.yml
vendored
|
@ -10,9 +10,12 @@ on:
|
|||
|
||||
jobs:
|
||||
release:
|
||||
needs:
|
||||
- build-artifacts-macOS
|
||||
- build-artifacts-Linux
|
||||
concurrency: release
|
||||
# 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')
|
||||
if: github.event.pull_request.head.repo.full_name == 'DeterminateSystems/nix-actions-cache' && contains(github.event.pull_request.labels.*.name, 'upload to s3')
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
id-token: write # In order to request a JWT for AWS auth
|
||||
|
|
3
.github/workflows/release-tags.yml
vendored
3
.github/workflows/release-tags.yml
vendored
|
@ -7,6 +7,9 @@ on:
|
|||
|
||||
jobs:
|
||||
release:
|
||||
needs:
|
||||
- build-artifacts-macOS
|
||||
- build-artifacts-Linux
|
||||
concurrency: release
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
|
|
Loading…
Reference in a new issue