release #4
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: release | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: 'SemVer that will be used for publishing (e.g. "0.0.1")' | |
required: true | |
type: string | |
jobs: | |
Prepare-Release: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Create release/${{ github.event.inputs.version }} branch | |
run: | | |
git config user.name "think-it-account" | |
git config user.email "[email protected]" | |
git checkout -b release/${{ inputs.version }} | |
sed -i 's/"version":.*/"version": "${{ inputs.version }}",/g' package.json | |
git add . | |
git commit -m "Prepare release ${{ inputs.version }}" | |
git push origin main | |
git tag --force v${{ inputs.version }} | |
git push --force origin v${{ inputs.version }} | |
- name: Create GitHub Release | |
uses: ncipollo/release-action@v1 | |
with: | |
generateReleaseNotes: true | |
tag: ${{ inputs.version }} | |
token: ${{ secrets.GITHUB_TOKEN }} | |
makeLatest: true | |
removeArtifacts: true | |
- name: Publish package | |
uses: ./.github/workflows/npm-publish.yml |