GitHub Workflow for automatic publishing gaarf-js to npm.org on versi… #1
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 gaarf-js to npm on version bump' | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
autopublish: | |
name: Publish release if package.json version was bumped | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
- name: Check package version | |
id: cpv | |
uses: PostHog/check-package-version@v2 | |
- name: Echo versions | |
run: | | |
echo "Committed version: ${{ steps.cpv.outputs.committed-version }}" | |
echo "Published version: ${{ steps.cpv.outputs.published-version }}" | |
- name: Install dependencies | |
if: steps.cpv.outputs.is-new-version == 'true' | |
run: npm ci | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '16.x' | |
registry-url: 'https://wombat-dressing-room.appspot.com/' | |
- name: Publish new version | |
if: steps.cpv.outputs.is-new-version == 'true' | |
run: npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }} |