-
Notifications
You must be signed in to change notification settings - Fork 5
62 lines (54 loc) · 1.49 KB
/
Copy pathcoordination_master.yml
File metadata and controls
62 lines (54 loc) · 1.49 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: Coordination -- master branch
on:
push:
branches:
- master
workflow_dispatch:
permissions:
contents: write
concurrency:
group: coordination-master-${{ github.ref }}
cancel-in-progress: false
jobs:
prepare_release:
name: prepare_release
uses: ./.github/workflows/step_master_prepare_release.yml
secrets:
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
NRV_TOKEN_GITHUB: ${{ secrets.NRV_TOKEN_GITHUB }}
publish_pypi:
name: publish_pypi
needs: prepare_release
uses: ./.github/workflows/step_master_pypi_release.yml
with:
git_ref: ${{ needs.prepare_release.outputs.release_tag }}
secrets: inherit
create_release:
name: create_release
needs:
- prepare_release
- publish_pypi
uses: ./.github/workflows/step_master_create_release.yml
with:
release_tag: ${{ needs.prepare_release.outputs.release_tag }}
secrets: inherit
publish_stable_docs:
name: publish_stable_docs
needs:
- prepare_release
- create_release
uses: ./.github/workflows/step_master_publish_stable_docs.yml
with:
release_tag: ${{ needs.prepare_release.outputs.release_tag }}
rtd_project: nrv
secrets: inherit
docker_images:
name: docker_images
needs:
- prepare_release
- create_release
- publish_stable_docs
uses: ./.github/workflows/step_master_docker-image.yml
with:
release_tag: ${{ needs.prepare_release.outputs.release_tag }}
secrets: inherit