Release package #9
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-type: | |
description: 'Release type (one of): patch, minor, major, prepatch, preminor, premajor, prerelease' | |
required: true | |
concurrency: | |
group: 'release' | |
cancel-in-progress: true | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout project repository | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
# Setup Node.js environment | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
registry-url: https://registry.npmjs.org/ | |
node-version: '18' | |
# Install dependencies | |
- name: Install dependencies | |
run: yarn install | |
# Build application | |
- name: Build application | |
run: yarn build | |
# Configure Git | |
- name: Git configuration | |
run: | | |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
git config --global user.name "github-actions[bot]" | |
# Bump package version to NPM (for non-pre-releases) | |
- name: Bump release version to NPM | |
if: startsWith(github.event.inputs.release-type, 'pre') != true | |
run: | | |
NEW_VERSION=$(npm --no-git-tag-version version $RELEASE_TYPE) | |
echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV | |
echo "RELEASE_TAG=latest" >> $GITHUB_ENV | |
echo "PRERELEASE=false" >> $GITHUB_ENV | |
env: | |
RELEASE_TYPE: ${{ github.event.inputs.release-type }} | |
# Bump package pre-release version to NPM (for pre-releases) | |
- name: Bump pre-release version to NPM | |
if: startsWith(github.event.inputs.release-type, 'pre') | |
run: | | |
NEW_VERSION=$(npm --no-git-tag-version --preid=beta version $RELEASE_TYPE) | |
echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV | |
echo "RELEASE_TAG=beta" >> $GITHUB_ENV | |
echo "PRERELEASE=true" >> $GITHUB_ENV | |
env: | |
RELEASE_TYPE: ${{ github.event.inputs.release-type }} | |
# Commit changes and create tag | |
- name: Commit package.json changes and create tag | |
run: | | |
git add package.json | |
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_ACCESS_TOKEN }} | |
# Push repository changes | |
- name: Push changes to repository | |
run: | | |
git push origin main | |
git push --tags | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Release package to NPM | |
uses: google-github-actions/release-please-action@v3 | |
with: | |
release-type: node | |
package-name: release-please-action |