Merge pull request #79 from skovhus/dependabot/npm_and_yarn/qs-6.5.3 #42
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 changes | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 12 | |
registry-url: https://registry.npmjs.org/ | |
- run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "skovhus" | |
name: Configure for pushing git tags | |
- run: bash publish.sh | |
name: Publish changes | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} |