version bump to 1.6.7 #152
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: Node CI | |
on: [push,pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 10 | |
- name: Install yarn | |
run: npm install -g yarn | |
- run: yarn install | |
- run: yarn build | |
- name: Add artifact to github | |
uses: actions/upload-artifact@v2 | |
with: | |
name: artifact | |
path: dist | |
npm-publish: | |
needs: [build] | |
name: npm-publish | |
runs-on: ubuntu-latest | |
# only on master | |
if: github.ref == 'refs/heads/master' | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 10.x | |
- name: Download build | |
uses: actions/download-artifact@v2 | |
with: | |
name: artifact | |
path: dist | |
- name: Publish if version in package.json change | |
uses: springtype-org/github-action-npm-publish@master | |
with: | |
install_build_packages: true | |
project_build_dir: dist | |
create_tag: true | |
auth_token: ${{ secrets.npm_token }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |