Skip to content

Commit 37ab5e7

Browse files
committedMar 17, 2025
Add required check for release build
1 parent e21c0dd commit 37ab5e7

File tree

1 file changed

+25
-24
lines changed

1 file changed

+25
-24
lines changed
 

‎.github/workflows/github-release.yml

+25-24
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ jobs:
5151
inputs.signer_tag != ''
5252
name: Build Binaries
5353
runs-on: ubuntu-latest
54+
environment: "Build Release"
5455
strategy:
5556
## Run a maximum of 10 builds concurrently, using the matrix defined in inputs.arch
5657
max-parallel: 10
@@ -85,29 +86,6 @@ jobs:
8586
signer_docker_tag: ${{ inputs.signer_docker_tag }}
8687
is_node_release: ${{ inputs.is_node_release }}
8788

88-
## Runs when the following is true:
89-
## - either node or signer tag is provided
90-
create-release:
91-
if: |
92-
inputs.node_tag != '' ||
93-
inputs.signer_tag != ''
94-
name: Create Release
95-
runs-on: ubuntu-latest
96-
needs:
97-
- build-binaries
98-
steps:
99-
## Creates releases
100-
- name: Create Release
101-
uses: stacks-network/actions/stacks-core/release/create-releases@main
102-
with:
103-
node_tag: ${{ inputs.node_tag }}
104-
node_docker_tag: ${{ inputs.node_docker_tag }}
105-
signer_tag: ${{ inputs.signer_tag }}
106-
signer_docker_tag: ${{ inputs.signer_docker_tag }}
107-
is_node_release: ${{ inputs.is_node_release }}
108-
is_signer_release: ${{ inputs.is_signer_release }}
109-
GH_TOKEN: ${{ secrets.GH_TOKEN }}
110-
11189
## Builds arch dependent Docker images from binaries
11290
##
11391
## Runs when the following is true:
@@ -120,7 +98,6 @@ jobs:
12098
runs-on: ubuntu-latest
12199
needs:
122100
- build-binaries
123-
- create-release
124101
strategy:
125102
fail-fast: false
126103
## Build a maximum of 2 images concurrently based on matrix.dist
@@ -143,6 +120,30 @@ jobs:
143120
DOCKERHUB_PASSWORD: ${{ secrets.DOCKERHUB_PASSWORD }}
144121
dist: ${{ matrix.dist }}
145122

123+
## Runs when the following is true:
124+
## - either node or signer tag is provided
125+
create-release:
126+
if: |
127+
inputs.node_tag != '' ||
128+
inputs.signer_tag != ''
129+
name: Create Release
130+
runs-on: ubuntu-latest
131+
needs:
132+
- build-binaries
133+
- docker-image
134+
steps:
135+
## Creates releases
136+
- name: Create Release
137+
uses: stacks-network/actions/stacks-core/release/create-releases@main
138+
with:
139+
node_tag: ${{ inputs.node_tag }}
140+
node_docker_tag: ${{ inputs.node_docker_tag }}
141+
signer_tag: ${{ inputs.signer_tag }}
142+
signer_docker_tag: ${{ inputs.signer_docker_tag }}
143+
is_node_release: ${{ inputs.is_node_release }}
144+
is_signer_release: ${{ inputs.is_signer_release }}
145+
GH_TOKEN: ${{ secrets.GH_TOKEN }}
146+
146147
## Create the downstream PR for the release branch to master,develop
147148
create-pr:
148149
if: |

0 commit comments

Comments
 (0)