publish to github package repo on new version #171
Workflow file for this run
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: build | |
on: | |
pull_request: | |
push: | |
branches: [ master ] | |
tags: | |
- .* | |
jobs: | |
build_test_and_publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: latest | |
- name: Install dependencies | |
run: npm ci | |
- name: Compile the typescript | |
run: npm run compile | |
- name: Lint the code | |
run: npm run lint | |
- name: Run the tests | |
run: npm test | |
- name: Check for version change | |
run: | | |
[ "$(git show head^:package.json | jq .version)" = "$(cat package.json| jq .version)" ] && echo "::set-output name=version_changed::true" || echo "::set-output name=version_changed::false" | |
- name: Copy relevant documentation into the build folder | |
if: steps.version-check.outputs.version_changed == 'true' | |
run: cp package.json README.md LICENSE-APACHE LICENSE-MIT ./build | |
- name: Publish to npmjs | |
uses: JS-DevTools/npm-publish@v1 | |
if: github.ref == 'refs/heads/master' && steps.version-check.outputs.version_changed == 'true' | |
with: | |
token: ${{ secrets.NPM_TOKEN }} | |
package: build/package.json | |
# don't try and deploy if versions haven't changed | |
check-version: true | |
- name: Publish to github | |
if: github.ref == 'refs/heads/master' && steps.version-check.outputs.version_changed == 'true' | |
run: npm run publish:github |