File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed
Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Test
2+
3+ on :
4+ workflow_dispatch :
5+ push :
6+ branches :
7+ - master
8+
9+ defaults :
10+ run :
11+ shell : bash
12+
13+ concurrency :
14+ group : ci-${{ github.head_ref || github.ref || github.run_id }}
15+ # # Always cancel duplicate jobs
16+ cancel-in-progress : true
17+
18+ run-name : ${{ github.ref_name }}
19+
20+ jobs :
21+ check-release :
22+ name : Check Release
23+ runs-on : ubuntu-latest
24+ outputs :
25+ node_tag : ${{ steps.check_release.outputs.node_tag }}
26+ node_docker_tag : ${{ steps.check_release.outputs.node_docker_tag }}
27+ signer_tag : ${{ steps.check_release.outputs.signer_tag }}
28+ signer_docker_tag : ${{ steps.check_release.outputs.signer_docker_tag }}
29+ is_node_release : ${{ steps.check_release.outputs.is_node_release }}
30+ is_signer_release : ${{ steps.check_release.outputs.is_signer_release }}
31+ steps :
32+ - name : Check Release
33+ id : check_release
34+ uses : stacks-network/actions/stacks-core/release/check-release@feat/check-versions-file-on-release
35+ with :
36+ tag : ${{ github.ref_name }}
You can’t perform that action at this time.
0 commit comments