feat(ci): continuous releases for main and PRs with pkg.pr.new #4
Workflow file for this run
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: Continuous Releases | |
on: | |
push: | |
branches: | |
- main | |
- docusaurus-v** | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
release: | |
name: Continuous Releases | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Installation | |
run: yarn | |
- name: Build packages | |
run: yarn build:packages | |
- name: Fresh templates | |
run: | | |
yarn create-docusaurus fresh-examples/docusaurus-classic classic --javascript -p npm -s | |
yarn create-docusaurus fresh-examples/docusaurus-classic-typescript classic --typescript -p npm -s | |
- name: Release | |
run: npx pkg-pr-new publish './packages/*' --template './fresh-examples/*' --compact --comment=off |