-
Notifications
You must be signed in to change notification settings - Fork 8
48 lines (43 loc) · 1.3 KB
/
crucible-release-ci.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: crucible-release-ci
on:
pull_request:
branches: [ master ]
paths-ignore:
- LICENSE
- '**.md'
- .github/workflows/run-crucible-tracking.yaml
- .github/workflows/crucible-merged.yaml
- .github/workflows/crucible-scheduled.yaml
- .github/workflows/faux-crucible-release-ci.yaml
- .github/workflows/faux-crucible-ci.yaml
- .github/workflows/faux-ci.yaml
- 'docs/**'
- 'spec/**'
workflow_dispatch:
concurrency:
group: ${{ github.ref }}/release-ci
cancel-in-progress: true
jobs:
call-crucible-release-remove:
uses: ./.github/workflows/crucible-release.yaml
with:
custom_tag: "ci-version-test"
action: "delete"
force_push: true
secrets:
PRIVATE_KEY__TAG_CRUCIBLE_RELEASE: ${{ secrets.PRIVATE_KEY__TAG_CRUCIBLE_RELEASE }}
call-crucible-release-create:
uses: ./.github/workflows/crucible-release.yaml
needs: call-crucible-release-remove
with:
custom_tag: "ci-version-test"
action: "push"
secrets:
PRIVATE_KEY__TAG_CRUCIBLE_RELEASE: ${{ secrets.PRIVATE_KEY__TAG_CRUCIBLE_RELEASE }}
crucible-release-ci-complete:
runs-on: [ self-hosted, workflow-overhead ]
timeout-minutes: 10
needs: call-crucible-release-create
steps:
- name: complete
run: echo "crucible-release-ci-complete"