Merge pull request #43 from Era360/master #46
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 to NPM | |
on: | |
push: | |
branches: | |
- "master" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: set global attributes | |
run: | | |
git config --global user.email "bmsteve96@gmail.com" | |
git config --global user.name "Benedict Steven" | |
git remote set-url origin https://x-access-token:${{ secrets.TOKEN }}@github.com/${{ github.repository }} | |
- name: Setup Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '14.x' | |
registry-url: 'https://registry.npmjs.org' | |
- name: Install dependencies and build 🔧 | |
run: npm install && npm run build | |
- name: Publish package on NPM 📦 | |
run: npm publish --access public | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} | |
# update version | |
- name: install jq | |
run: | | |
sudo apt-get update | |
sudo apt-get -y install jq | |
- name: get version | |
run: | | |
PACKAGE_VERSION=$(cat ./package.json | jq '.version' | tr -d '"') | |
echo "::set-output name=PACKAGE_VERSION::$(cat ./package.json | jq '.version' | tr -d '"')" | |
id: version | |
- name: bump-version | |
id: bump_version | |
uses: flexcodelabs/bump-version@0.0.2 | |
with: | |
GITHUB_TOKEN: ${{secrets.TOKEN}} | |
PACKAGE_VERSION: ${{ steps.version.outputs.PACKAGE_VERSION }} | |
DELETE_BRANCH: false | |
CHANGELOG_PATH: ./CHANGELOG.md | |
PACKAGE_JSON_PATH: ./package.json | |
- name: update master branch | |
run: | | |
git add ./package.json | |
git add ./CHANGELOG.md | |
git commit -m "Skip CI" | |
git push |