From ebfdaf977bed9b739a26660aa17cdde9999b6e1d Mon Sep 17 00:00:00 2001 From: Mohammad Bagher Abiyat Date: Sun, 4 Aug 2024 20:45:31 +0330 Subject: [PATCH] init --- .github/workflows/cr.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/cr.yml diff --git a/.github/workflows/cr.yml b/.github/workflows/cr.yml new file mode 100644 index 000000000000..ad3acdd33c29 --- /dev/null +++ b/.github/workflows/cr.yml @@ -0,0 +1,30 @@ +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: Release + run: npx pkg-pr-new publish './packages/*' --template './examples/*' --compact