Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/bump-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ jobs:
- if: ${{ inputs.is-library == false && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main') }}
name: Bump version and push tag (service)
id: tag_version
uses: mathieudutour/github-tag-action@v6.0
uses: mathieudutour/github-tag-action@v6.2
with:
github_token: ${{ secrets.token }}
custom_tag: oneclick-${{ env.BUILD_NUMBER }}
tag_prefix: ""
- if: ${{ inputs.is-library == true && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main') }}
name: Bump version and push tag (library)
id: tag_version_lib
uses: mathieudutour/github-tag-action@v5.6
uses: mathieudutour/github-tag-action@v6.2
with:
github_token: ${{ secrets.token }}
- if: ${{ inputs.create-release == true && inputs.is-library == false && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main') }}
Expand Down Expand Up @@ -79,15 +79,15 @@ jobs:
- name: Bump version and push tag PR (service)
if: ${{ inputs.is-library == false && (github.ref != 'refs/heads/master' || github.ref != 'refs/heads/main') && steps.findPr.outputs.number > 0 }}
id: tag_version_pr
uses: mathieudutour/github-tag-action@v6.0
uses: mathieudutour/github-tag-action@v6.2
with:
github_token: ${{ secrets.token }}
custom_tag: oneclickpr-${{ env.BUILD_NUMBER }}
tag_prefix: ""
- name: Bump version and push tag PR (library)
if: ${{ inputs.is-library == true && (github.ref != 'refs/heads/master' || github.ref != 'refs/heads/main') && steps.findPr.outputs.number > 0 }}
id: tag_version_pr_lib
uses: mathieudutour/github-tag-action@v6.0
uses: mathieudutour/github-tag-action@v6.2
with:
github_token: ${{ secrets.token }}
custom_tag: pr-${{ env.BUILD_NUMBER }}
Expand All @@ -111,15 +111,15 @@ jobs:
- name: Bump version and push tag Release Branch (service)
if: ${{ inputs.is-library == false && contains(github.ref, 'release') }}
id: tag_version_release
uses: mathieudutour/github-tag-action@v6.0
uses: mathieudutour/github-tag-action@v6.2
with:
github_token: ${{ secrets.token }}
custom_tag: oneclickrelease-${{ env.BUILD_NUMBER }}
tag_prefix: ""
- name: Bump version and push tag Release Branch (library)
if: ${{ inputs.is-library == true && contains(github.ref, 'release') }}
id: tag_version_release_lib
uses: mathieudutour/github-tag-action@v6.0
uses: mathieudutour/github-tag-action@v6.2
with:
github_token: ${{ secrets.token }}
- name: Create a GitHub release branch
Expand Down