release #16
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: major/minor/patch | |
required: true | |
default: minor | |
jobs: | |
release: | |
if: github.ref == 'refs/heads/main' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
registry-url: 'https://registry.npmjs.org' | |
cache: npm | |
- name: Install packages | |
run: npm ci | |
- name: Check test pass before releasing | |
run: npm test | |
- name: Add release commit | |
run: | | |
git config --global user.name 'croquiscom-admin' | |
git config --global user.email '[email protected]' | |
npm version --no-git-tag-version ${{ github.event.inputs.version }} | |
npm run build | |
git add package.json package-lock.json lib | |
AUTHOR="${{ github.event.sender.login }} <${{ github.event.sender.id }}+${{ github.event.sender.login }}@users.noreply.github.com>" | |
VERSION=$(node -p "require('./package.json').version") | |
git commit -m "v$VERSION" --author "$AUTHOR" | |
git tag v$VERSION | |
git push | |
git push --tags | |
- name: Release version | |
run: npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |