Merge branch 'main' of https://github.com/Cap-go/capgo #6026
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Bump version | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: | |
- main | |
- development | |
jobs: | |
bump-version: | |
if: ${{ !startsWith(github.event.head_commit.message, 'chore(release):') }} | |
runs-on: ubuntu-latest | |
name: "Bump version and create changelog with standard version" | |
steps: | |
- name: Check out | |
uses: actions/checkout@v4 | |
with: | |
token: '${{ secrets.PERSONAL_ACCESS_TOKEN }}' | |
- name: Setup bun | |
uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: latest | |
- name: Git config | |
run: | | |
git config --local user.name "github-actions[bot]" | |
git config --local user.email "github-actions[bot]@users.noreply.github.com" | |
- name: Create bump and changelog | |
if: github.ref == 'refs/heads/main' | |
run: bun x standard-version | |
- name: Create bump and changelog | |
if: github.ref != 'refs/heads/main' | |
run: bun x standard-version --prerelease alpha | |
- name: Push to origin | |
run: | | |
CURRENT_BRANCH=$(git rev-parse --abbrev-ref HEAD) | |
CURRENT_MESSAGE=$(git show-branch --no-name HEAD) | |
remote_repo="https://${GITHUB_ACTOR}:${{ secrets.PERSONAL_ACCESS_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git" | |
git commit --amend -o -m "$CURRENT_MESSAGE [skip netlify]" | |
git pull $remote_repo $CURRENT_BRANCH | |
git push $remote_repo HEAD:$CURRENT_BRANCH --follow-tags --tags |