We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25afaee commit d91c73dCopy full SHA for d91c73d
.github/workflows/release.yaml
@@ -74,22 +74,19 @@ jobs:
74
TAG_NAME: v${{ needs.build.outputs.version }}
75
76
steps:
77
- - name: Release version
78
- run: echo "Release version is ${{ env.TAG_NAME }}"
79
-
80
- name: Download build artifact
81
uses: actions/download-artifact@v4
82
with:
83
name: csaps-packages
84
path: dist
85
86
- - name: Check tag
+ - name: Check tag ${{ env.TAG_NAME }}
87
uses: mukunku/tag-exists-action@v1.6.0
88
id: check-tag
89
90
tag: ${{ env.TAG_NAME }}
91
92
- - name: Create tag
+ - name: Create tag ${{ env.TAG_NAME }}
93
if: ${{ steps.check-tag.outputs.exists == 'false' }}
94
uses: actions/github-script@v7
95
0 commit comments