Skip to content

Commit

Permalink
CI: Bump Version
Browse files Browse the repository at this point in the history
  • Loading branch information
icealtria committed Mar 27, 2024
1 parent a1ad220 commit 9b32e8e
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions .github/workflows/version.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: Bump Version
on:
workflow_dispatch:
inputs:
type:
description: 'Type of version (`major`, `minor`, `patch`)'
required: true
default: 'patch'

jobs:
bump:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal access token.
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
token: ${{secrets.PAT}} # use a personal acces token so that other actions can trigger
# Bump the version number
- name: Update Version
uses: MCKanpolat/auto-semver-action@v2
id: version
with:
releaseType: ${{ github.event.inputs.type }}
github_token: ${{ secrets.PAT }}
# update the manifest.json with the new version
- name: Update manifest version
uses: jossef/action-set-json-field@v2.1
with:
file: manifest.json
field: version
value: ${{ steps.version.outputs.version }}
# update the package.json with the new version
- name: Update package version
uses: jossef/action-set-json-field@v2.1
with:
file: package.json
field: version
value: ${{ steps.version.outputs.version }}
# update the versions.json with the new version
- name: Commit manifest
run: |
git config --local user.name "GitHub Action"
git config --local user.email "action@github.com"
git branch --show-current
git add -u
git commit -m "${{ steps.version.outputs.version }}"
git tag -fa ${{ steps.version.outputs.version }} -m "${{ steps.version.outputs.version }}"
# push the commit
- name: Push changes
uses: ad-m/github-push-action@master
with:
tags: true
force: true
github_token: ${{ secrets.PAT }}

0 comments on commit 9b32e8e

Please sign in to comment.