fix(test): fix bad test import (#12200) #114
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: Publish | |
| on: | |
| # Publish canary on push | |
| push: | |
| branches: | |
| - main | |
| - docusaurus-v** | |
| paths: | |
| - .github/workflows/publish.yml | |
| - package.json | |
| - packages/** | |
| # Publish release on manual dispatch | |
| workflow_dispatch: | |
| inputs: | |
| npm_version: | |
| description: 'NPM Version - Including prerelease suffix (optional)' | |
| required: true | |
| default: 3.0.0-alpha.0 | |
| npm_tag: | |
| type: choice | |
| description: 'NPM Dist Tag - Use `latest` for official stable releases' | |
| # default: canary | |
| required: true | |
| options: | |
| - canary | |
| - alpha | |
| - beta | |
| - rc | |
| - latest | |
| - v3-stable | |
| permissions: | |
| id-token: write # For OIDC, see https://docs.npmjs.com/trusted-publishers | |
| contents: write # For GitHub tags | |
| jobs: | |
| publish: | |
| name: Publish NPM release | |
| if: github.repository == 'facebook/docusaurus' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| with: | |
| fetch-depth: 0 # Needed to get the commit number with "git rev-list --count HEAD" | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9 | |
| - name: Set up Node | |
| uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 | |
| with: | |
| node-version: lts/* | |
| # ⚠️ Do not use any cache on purpose | |
| # It increases the chance of a compromised release being publish | |
| # See https://github.com/actions/setup-node/issues/1445#issuecomment-4040130833 | |
| # cache: pnpm | |
| - name: Prepare git | |
| run: | | |
| git config --global user.name "Docusaurus" | |
| git config --global user.email "github@docusaurus.io" | |
| - name: Installation | |
| run: pnpm install --frozen-lockfile || pnpm install --frozen-lockfile || pnpm install --frozen-lockfile | |
| - name: Publish Canary release | |
| if: | | |
| github.event_name == 'push' || | |
| (github.event_name == 'workflow_dispatch' && github.event.inputs.npm_tag == 'canary') | |
| run: | | |
| pnpm canary:bumpVersion | |
| pnpm canary:publish | |
| - name: Publish NPM release | |
| if: | | |
| github.event_name == 'workflow_dispatch' && github.event.inputs.npm_tag != 'canary' | |
| run: | | |
| pnpm lerna publish \ | |
| --force-publish \ | |
| --exact "${{ github.event.inputs.npm_version }}" \ | |
| --dist-tag "${{ github.event.inputs.npm_tag }}" \ | |
| --loglevel verbose \ | |
| --yes \ | |
| --no-push | |
| git push origin v"${{ github.event.inputs.npm_version }}" | |
| # TODO should we push the package version local updates to Git? | |
| # "main" is currently protected, even GitHub Actions can't push to it | |
| # However it remains useful to push the git tag |