Release package #12
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 package | |
on: | |
workflow_dispatch: | |
inputs: | |
release-level: | |
description: 'Release level (one of): patch, minor, major, prepatch, preminor, premajor, prerelease' | |
required: true | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: 'npm' | |
# Please note that you need to set the registry-url to https://registry.npmjs.org/ in setup-node to properly configure your credentials. | |
registry-url: 'https://registry.npmjs.org' | |
- name: Install npm dependencies | |
run: npm ci | |
- name: Run unit tests | |
run: npm test | |
# Git configuration | |
- name: Git configuration | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "GitHub Actions release job" | |
- name: Bump release version | |
if: startsWith(github.event.inputs.release-level, 'pre') != true | |
run: | | |
echo "NEW_VERSION=$(npm --no-git-tag-version version $RELEASE_LEVEL)" >> $GITHUB_ENV | |
echo "RELEASE_TAG=latest" >> $GITHUB_ENV | |
env: | |
RELEASE_LEVEL: ${{ github.event.inputs.release-level }} | |
- name: Bump pre-release version | |
if: startsWith(github.event.inputs.release-level, 'pre') | |
run: | | |
echo "NEW_VERSION=$(npm --no-git-tag-version --preid=beta version $RELEASE_LEVEL)" >> $GITHUB_ENV | |
echo "RELEASE_TAG=beta" >> $GITHUB_ENV | |
env: | |
RELEASE_LEVEL: ${{ github.event.inputs.release-level }} | |
# Update changelog unreleased section with new version | |
- name: Update changelog | |
uses: superfaceai/release-changelog-action@v2 | |
with: | |
path-to-changelog: CHANGELOG.md | |
version: ${{ env.NEW_VERSION }} | |
operation: release | |
# Commit changelog changes | |
- name: Commit CHANGELOG.md and package.json changes and create tag | |
run: | | |
git add "package.json" | |
git add "CHANGELOG.md" | |
git commit -m "chore: release ${{ env.NEW_VERSION }}" | |
git tag ${{ env.NEW_VERSION }} | |
# Publish version to public repository | |
- name: Publish | |
run: npm publish --verbose --access public --tag ${{ env.RELEASE_TAG }} | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_BOT_PAT }} | |
# Push changes to origin | |
- name: Push changes to repository | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
git push origin && git push --tags | |
# Read version changelog | |
- id: get-changelog | |
name: Get release version changelog | |
uses: superfaceai/release-changelog-action@v1 | |
with: | |
path-to-changelog: CHANGELOG.md | |
version: ${{ env.NEW_VERSION }} | |
operation: read | |
# Update release documentation | |
- name: Update GitHub release documentation | |
uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: ${{ env.NEW_VERSION }} | |
body: ${{ steps.get-changelog.outputs.changelog }} | |
prerelease: ${{ startsWith(github.event.inputs.release-level, 'pre') }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |