docs(changeset): Adds webhook ID to ID_PREFIXES #114
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
on: | |
push: | |
branches: ['master'] | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
uses: actions/setup-node@v3 | |
- name: Install dependencies | |
run: yarn | |
- name: Build | |
run: yarn build | |
env: | |
NODE_ENV: production | |
- name: Test | |
run: yarn test | |
env: | |
NODE_ENV: production | |
HOP_TOKEN: ${{ secrets.HOP_TOKEN }} | |
- name: Check we have changesets since master | |
run: yarn changeset status --since=master | |
- name: Bump version | |
run: yarn changeset version | |
- name: Publish to npm | |
uses: changesets/action@v1 | |
with: | |
publish: yarn release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Commit changes | |
continue-on-error: true | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Hop CI" | |
git add . | |
git commit -m "Bump version" | |
git push -u --set-upstream origin master --force |