test publish #1786
This file contains hidden or 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: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| - docusaurus-v** | |
| - slorber/test-canary-trusted-publisher | |
| paths: | |
| - .github/workflows/canary-release.yml | |
| - package.json | |
| - packages/** | |
| permissions: | |
| contents: read | |
| id-token: write # For OIDC, see https://docs.npmjs.com/trusted-publishers | |
| jobs: | |
| publish-canary: | |
| name: Publish Canary | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| fetch-depth: 0 # Needed to get the commit number with "git rev-list --count HEAD" | |
| - name: Set up Node | |
| uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0 | |
| with: | |
| node-version: lts/* | |
| cache: yarn | |
| # Ensure npm 11.5.1 or later is installed for OIDC | |
| - name: Update npm | |
| run: | | |
| npm install -g npm@latest | |
| npm --version | |
| - name: Prepare git | |
| run: | | |
| git config --global user.name "Docusaurus Canary" | |
| git config --global user.email "canary@docusaurus.io" | |
| git fetch | |
| git checkout | |
| git log | |
| - name: TEST PUBLISH | |
| run: | | |
| cd packages/stylelint-copyright | |
| cat package.json | |
| npm publish --tag TEST | |
| - name: Installation | |
| run: yarn || yarn || yarn | |
| - name: Publish Canary release | |
| run: | | |
| yarn canary |