???
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:
|
pull_request:
|
||||||
push:
|
push:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
workflow_call:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-artifacts-macOS:
|
build-artifacts-macOS:
|
||||||
|
|
4
.github/workflows/release-branches.yml
vendored
4
.github/workflows/release-branches.yml
vendored
|
@ -11,10 +11,14 @@ on:
|
||||||
- completed
|
- completed
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
build:
|
||||||
|
uses: ./.github/workflows/build.yaml
|
||||||
|
|
||||||
release:
|
release:
|
||||||
needs:
|
needs:
|
||||||
- build-artifacts-macOS
|
- build-artifacts-macOS
|
||||||
- build-artifacts-Linux
|
- build-artifacts-Linux
|
||||||
|
|
||||||
concurrency: release
|
concurrency: release
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
|
|
7
.github/workflows/release-prs.yml
vendored
7
.github/workflows/release-prs.yml
vendored
|
@ -17,7 +17,14 @@ on:
|
||||||
- labeled
|
- labeled
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
build:
|
||||||
|
uses: ./.github/workflows/build.yaml
|
||||||
|
|
||||||
release:
|
release:
|
||||||
|
needs:
|
||||||
|
- build-artifacts-macOS
|
||||||
|
- build-artifacts-Linux
|
||||||
|
|
||||||
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-actions-cache' && 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')
|
||||||
|
|
7
.github/workflows/release-tags.yml
vendored
7
.github/workflows/release-tags.yml
vendored
|
@ -14,7 +14,14 @@ on:
|
||||||
- "v*.*.*"
|
- "v*.*.*"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
build:
|
||||||
|
uses: ./.github/workflows/build.yaml
|
||||||
|
|
||||||
release:
|
release:
|
||||||
|
needs:
|
||||||
|
- build-artifacts-macOS
|
||||||
|
- build-artifacts-Linux
|
||||||
|
|
||||||
concurrency: release
|
concurrency: release
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
|
|
Loading…
Reference in a new issue