File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change 3131 type : string
3232 required : true
3333
34+ env :
35+ RELEASE_CANDIDATE : " ${{ github.event.inputs.version }}${{ github.event.inputs.rc }}"
36+
3437jobs :
3538 validate-inputs :
3639 runs-on : ubuntu-latest
5255
5356 - name : Echo Release Candidate Version
5457 run : |
55- echo "Running Release Candidate Version: ${{ github.event.inputs.version }}${{ github.event.inputs.rc }} "
58+ echo "Running Release Candidate Version: $RELEASE_CANDIDATE "
5659
5760 validate-library-version :
5861 runs-on : ubuntu-latest
@@ -207,7 +210,7 @@ jobs:
207210 - name : Merge Artifacts
208211 uses : actions/upload-artifact/merge@v4
209212 with :
210- name : " svn-release-candidate-${{ github.event.inputs.version }}${{ github.event.inputs.rc }}"
213+ name : " svn-release-candidate-${{ env.RELEASE_CANDIDATE }}"
211214 pattern : svn-release-candidate*
212215 delete-merged : true
213216
@@ -239,7 +242,7 @@ jobs:
239242 run : pip install poetry
240243
241244 - name : Set version with RC
242- run : python -m poetry version "${{ github.event.inputs.version }}${{ github.event.inputs.rc }}"
245+ run : python -m poetry version "${{ env.RELEASE_CANDIDATE }}"
243246
244247 # Publish the source distribution with the version that's in
245248 # the repository, otherwise the tests will fail
@@ -282,6 +285,6 @@ jobs:
282285 - name : Merge Artifacts
283286 uses : actions/upload-artifact/merge@v4
284287 with :
285- name : " pypi-release-candidate-${{ github.event.inputs.version }}${{ github.event.inputs.rc }}"
288+ name : " pypi-release-candidate-${{ env.RELEASE_CANDIDATE }}"
286289 pattern : pypi-release-candidate*
287290 delete-merged : true
You can’t perform that action at this time.
0 commit comments