Merge pull request #9 from grafana/jackw/update-gh-workflow #6
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-npm | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
publish: | |
name: Publish to NPM & GitHub Package Registry | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
ref: master | |
# limit releases to version changes - https://github.com/EndBug/version-check | |
- name: Check version changes | |
uses: EndBug/version-check@v2 | |
id: version_check | |
with: | |
# diff the commits rather than commit message for version changes | |
diff-search: true | |
- name: Version update detected | |
if: steps.version_check.outputs.changed == 'true' | |
run: 'echo "Version change found! New version: ${{ steps.version_check.outputs.version }} (${{ steps.version_check.outputs.type }})"' | |
- name: Setup .npmrc file for NPM registry | |
if: steps.version_check.outputs.changed == 'true' | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
registry-url: "https://registry.npmjs.org" | |
- name: Publish package to NPM | |
if: steps.version_check.outputs.changed == 'true' | |
run: npm publish --access public | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Setup .npmrc file for GitHub Packages | |
if: steps.version_check.outputs.changed == 'true' | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
registry-url: "https://npm.pkg.github.com" | |
scope: "@grafana" | |
- name: Publish package to Github Packages | |
if: steps.version_check.outputs.changed == 'true' | |
run: npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.GH_PACKAGE_TOKEN }} |