Skip to content

Commit

Permalink
Merge pull request #20 from exoego/bump-major
Browse files Browse the repository at this point in the history
Bump major version automatically
  • Loading branch information
exoego committed May 11, 2024
2 parents 6cf5c4b + 683c6f7 commit 96a07c6
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/bump.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Bump major version
on:
push:
tags:
- 'v*.*.*'

jobs:
tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: main
token: ${{ secrets.ACTIONS_BOT_TOKEN }}
fetch-depth: 0
- name: Git config
run: |
git config user.name actions-bot
git config user.email [email protected]
- name: Tag new target
run: |
major_version=$(echo "${{ github.ref_name }}" | cut -d'.' -f1)
git tag -f $major_version ${{ github.ref_name }}
- name: Push new tag
run: |
major_version=$(echo "${{ github.ref_name }}" | cut -d'.' -f1)
git push origin $major_version --force

0 comments on commit 96a07c6

Please sign in to comment.