Publish Packages to NPM #11
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: Publish Packages to NPM | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: 'version' | |
required: true | |
default: 'patch' | |
type: choice | |
options: | |
- patch | |
- minor | |
- major | |
jobs: | |
# Build job | |
build: | |
environment: publish_version | |
runs-on: ubuntu-latest | |
permissions: write-all | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Not needed if lastUpdated is not enabled | |
# - uses: pnpm/action-setup@v2 # Uncomment this if you're using pnpm | |
# - uses: oven-sh/setup-bun@v1 # Uncomment this if you're using Bun | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: npm # or pnpm / yarn | |
- name: Install dependencies | |
run: | | |
rm package-lock.json # https://github.com/npm/cli/issues/4828 | |
npm i | |
- name: Lint | |
run: | | |
npm run lint | |
- name: Build purista core | |
run: | | |
npm run build -w packages/core | |
- name: Build purista packages | |
run: | | |
npm run build | |
- name: Test | |
run: | | |
npm run test:unit | |
- name: Bump version | |
run: | | |
npm version ${{ inputs.version }} --no-git-tag-version | |
npm version ${{ inputs.version }} --no-git-tag-version --workspaces | |
git config --global user.name '${{ vars.CI_COMMIT_AUTHOR}}' | |
git config --global user.email '[email protected]' | |
git config --global push.followTags true | |
./scripts/commitVersion.sh | |
echo New version: | |
new_version=$(node -p -e "require('./package.json').version") | |
git checkout -b "purista_v$new_version" | |
echo "new_version=$new_version" >> $GITHUB_OUTPUT | |
id: bump_version | |
- name: Dry run publish | |
run: | | |
npm publish --access public --dry-run --workspaces | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Commit version bump | |
uses: planetscale/[email protected] | |
with: | |
commit_message: 'chore: bump ${{ inputs.version }} version to v${{ steps.bump_version.outputs.new_version }}' | |
repo: ${{ github.repository }} | |
branch: 'purista_v${{ steps.bump_version.outputs.new_version }}' | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
- name: Add Tag | |
run: | | |
git tag -a "v${{ steps.bump_version.outputs.new_version }}" -m "v${{ steps.bump_version.outputs.new_version }}" | |
git push origin -u purista_v${{ steps.bump_version.outputs.new_version }} | |
- name: create pull request | |
run: gh pr create -B master -H purista_v${{ steps.bump_version.outputs.new_version }} --title 'Merge purista_v${{ steps.bump_version.outputs.new_version }} into master' --body 'Created by Github action' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Publish to NPM | |
run: npm publish --access public --workspaces | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |