File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -266,13 +266,15 @@ jobs:
266
266
- name : Setup git user as [bot]
267
267
if : >-
268
268
fromJSON(needs.pre-setup.outputs.is-untagged-devel)
269
+ && fromJSON(needs.pre-setup.outputs.release-requested)
269
270
270
271
- name : >-
271
272
Tag the release in the local Git repo
272
273
as ${{ needs.pre-setup.outputs.git-tag }}
273
- for setuptools-scm to se the desired version
274
+ for setuptools-scm to set the desired version
274
275
if: >-
275
276
fromJSON(needs.pre-setup.outputs.is-untagged-devel)
277
+ && fromJSON(needs.pre-setup.outputs.release-requested)
276
278
run: >-
277
279
git tag
278
280
-m '${{ needs.pre-setup.outputs.git-tag }}'
@@ -783,7 +785,10 @@ jobs:
783
785
Tag the release in the local Git repo
784
786
as v${{ needs.pre-setup.outputs.git-tag }}
785
787
run: >-
786
- git tag '${{ needs.pre-setup.outputs.git-tag }}'
788
+ git tag
789
+ -m '${{ needs.pre-setup.outputs.git-tag }}'
790
+ '${{ needs.pre-setup.outputs.git-tag }}'
791
+ --
787
792
${{ github.event.inputs.release-commitish }}
788
793
- name : >-
789
794
Push ${{ needs.pre-setup.outputs.git-tag }} tag corresponding
You can’t perform that action at this time.
0 commit comments