Skip to content

Commit 9c5512b

Browse files
committed
Update GitHub Actions workflow to change tag from v1.0 to v1
This commit modifies the GitHub Actions workflow to update the tagging process by changing the version tag from v1.0 to v1. This change ensures consistency in versioning and simplifies the tagging strategy used in the release process.
1 parent 88e589e commit 9c5512b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/workflow.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,13 @@ jobs:
6464
with:
6565
github_token: ${{ secrets.GITHUB_TOKEN }}
6666

67-
- name: Update v1.0 tag
67+
- name: Update v1 tag
6868
run: |
6969
git config user.name "github-actions[bot]"
7070
git config user.email "github-actions[bot]@users.noreply.github.com"
7171
git fetch --tags
72-
git tag -f v1.0 ${{ steps.tag_version.outputs.new_tag }}
73-
git push origin v1.0 --force
72+
git tag -f v1 ${{ steps.tag_version.outputs.new_tag }}
73+
git push origin v1 --force
7474
7575
- name: Create Release
7676
uses: softprops/action-gh-release@v2

0 commit comments

Comments
 (0)