Skip to content

Merge pull request #53 from wednesday-solutions/alenbaby13-patch-1 #12

Merge pull request #53 from wednesday-solutions/alenbaby13-patch-1

Merge pull request #53 from wednesday-solutions/alenbaby13-patch-1 #12

Workflow file for this run

name: react-floki
on:
push:
branches:
- master
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14
registry-url: https://registry.npmjs.org/
- name: bump version
run: |
git config --global user.email "[email protected]"
git config --global user.name "Git"
npm version patch -m 'Bump up'
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}
- name: Publish
run: yarn publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}