Prepare release v4.2.0 (#1010) #307
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: Canary Release | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- packages/** | |
permissions: | |
contents: read | |
jobs: | |
publish-canary: | |
name: Publish Canary | |
runs-on: ubuntu-latest | |
if: ${{ github.repository == 'PaloAltoNetworks/docusaurus-openapi-docs' && github.ref == 'refs/heads/main' && github.event_name == 'push' }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Needed to get the commit number with "git rev-list --count HEAD" | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "18" | |
cache: yarn | |
- name: Prepare git | |
run: | | |
git config --global user.name "Steven Serrata" | |
git config --global user.email "[email protected]" | |
git fetch | |
git checkout main | |
echo "//registry.npmjs.org/:_authToken=${NPM_AUTH_TOKEN}" >> .npmrc | |
env: | |
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} | |
- name: Installation | |
run: yarn && yarn build-packages | |
- name: Publish Canary release | |
run: | | |
yarn canary | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} |