File tree Expand file tree Collapse file tree 2 files changed +5
-11
lines changed Expand file tree Collapse file tree 2 files changed +5
-11
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " wpgraphql-ide " : patch
3
+ ---
4
+
5
+ fix: remove duplicate git tag creation in release workflow
Original file line number Diff line number Diff line change 39
39
run : |
40
40
echo "Published: ${{ steps.changesets.outputs.published }}"
41
41
42
- - name : Create and push git tag
43
- if : steps.changesets.outputs.published == 'true'
44
- run : |
45
- VERSION=${{ fromJSON(steps.changesets.outputs.publishedPackages)[0].version }}
46
- TAG="v${VERSION}"
47
- echo "Creating tag: ${TAG}"
48
- git config user.name "github-actions[bot]"
49
- git config user.email "github-actions[bot]@users.noreply.github.com"
50
- git tag -a "${TAG}" -m "Release ${TAG}"
51
- git push origin "${TAG}"
52
-
53
42
- name : Upload release artifact
54
43
if : steps.changesets.outputs.published == 'true'
55
44
uses : svenstaro/upload-release-action@v2
You can’t perform that action at this time.
0 commit comments