We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a5a351 commit 6aed6d2Copy full SHA for 6aed6d2
.github/workflows/publish.yml
@@ -259,6 +259,13 @@ jobs:
259
echo "No tags to create"
260
fi
261
262
+ - name: Update v1 Actions tag
263
+ if: steps.release-type.outputs.type == 'stable' && steps.changesets.outputs.skip != 'true' && steps.quick-check.outputs.skip != 'true'
264
+ run: |
265
+ git tag -f v1
266
+ git push origin v1 --force
267
+ echo "Updated v1 tag to $(git rev-parse HEAD)"
268
+
269
- name: Create docs tag if version changed
270
if: steps.release-type.outputs.type == 'stable' && steps.changesets.outputs.skip != 'true' && steps.quick-check.outputs.skip != 'true' && steps.packages.outputs.publish_docs == 'true'
271
run: |
0 commit comments