-
Notifications
You must be signed in to change notification settings - Fork 49
39 lines (37 loc) · 1.08 KB
/
push-rc-ci.yml
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
name: Release Candidate CI
on:
push:
branches:
- release-candidate
jobs:
increase-version-number:
uses: ./.github/workflows/increase-version.yml
secrets:
token: ${{ secrets.COMMIT_VERSION_TOKEN }}
call-guideline-checks:
uses: ./.github/workflows/guideline-checks.yml
secrets:
GIST_BADGES_TOKEN: ${{ secrets.GIST_BADGES_TOKEN }}
GIST_BADGES_SECRET: ${{ secrets.GIST_BADGES_SECRET }}
call-build:
needs: [increase-version-number]
uses: ./.github/workflows/build-matrix.yml
secrets:
GIST_BADGES_TOKEN: ${{ secrets.GIST_BADGES_TOKEN }}
GIST_BADGES_SECRET: ${{ secrets.GIST_BADGES_SECRET }}
with:
use-double: 'true'
generate-badges: 'true'
call-deploy-doc:
needs: [increase-version-number]
uses: ./.github/workflows/deploy-doc.yml
secrets:
REPO_ACCESS_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }}
call-coverage:
needs: [increase-version-number]
uses: ./.github/workflows/build-matrix.yml
with:
windows: "false"
macos: "false"
build-release: "false"
coverage: "true"