???
This commit is contained in:
parent
472f695787
commit
baec1b19f6
1
.github/workflows/build.yaml
vendored
1
.github/workflows/build.yaml
vendored
|
@ -4,6 +4,7 @@ on:
|
|||
pull_request:
|
||||
push:
|
||||
workflow_dispatch:
|
||||
workflow_call:
|
||||
|
||||
jobs:
|
||||
build-artifacts-macOS:
|
||||
|
|
4
.github/workflows/release-branches.yml
vendored
4
.github/workflows/release-branches.yml
vendored
|
@ -11,10 +11,14 @@ on:
|
|||
- completed
|
||||
|
||||
jobs:
|
||||
build:
|
||||
uses: ./.github/workflows/build.yaml
|
||||
|
||||
release:
|
||||
needs:
|
||||
- build-artifacts-macOS
|
||||
- build-artifacts-Linux
|
||||
|
||||
concurrency: release
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
|
|
7
.github/workflows/release-prs.yml
vendored
7
.github/workflows/release-prs.yml
vendored
|
@ -17,7 +17,14 @@ on:
|
|||
- labeled
|
||||
|
||||
jobs:
|
||||
build:
|
||||
uses: ./.github/workflows/build.yaml
|
||||
|
||||
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-actions-cache' && contains(github.event.pull_request.labels.*.name, 'upload to s3')
|
||||
|
|
7
.github/workflows/release-tags.yml
vendored
7
.github/workflows/release-tags.yml
vendored
|
@ -14,7 +14,14 @@ on:
|
|||
- "v*.*.*"
|
||||
|
||||
jobs:
|
||||
build:
|
||||
uses: ./.github/workflows/build.yaml
|
||||
|
||||
release:
|
||||
needs:
|
||||
- build-artifacts-macOS
|
||||
- build-artifacts-Linux
|
||||
|
||||
concurrency: release
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
|
|
Loading…
Reference in a new issue