-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (32 loc) · 1019 Bytes
/
pipeline.yml
File metadata and controls
40 lines (32 loc) · 1019 Bytes
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
on:
push:
branches: ["*"]
pull_request:
permissions:
contents: write
jobs:
check-conventional-commits:
uses: armakuni/github-actions/.github/workflows/check-conventional-commits.yml@v0.19.6
test-checkout-rust-project:
uses: ./.github/workflows/test-checkout-rust-project.yml
test-determine-binary-name:
uses: ./.github/workflows/test-determine-binary-name.yml
test-determine-release-url:
uses: ./.github/workflows/test-determine-release-url.yml
test-install-release-binary:
uses: ./.github/workflows/test-install-release-binary.yml
all-tests-succeeded:
needs:
- check-conventional-commits
- test-checkout-rust-project
- test-determine-binary-name
- test-determine-release-url
- test-install-release-binary
runs-on: ubuntu-latest
steps:
- run: echo OK
release:
if: github.ref == 'refs/heads/main'
needs:
- all-tests-succeeded
uses: armakuni/github-actions/.github/workflows/tag-and-release.yml@v0.19.6