Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
Aslemammad committed Aug 4, 2024
1 parent 7be1fea commit ebfdaf9
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/cr.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit ebfdaf9

Please sign in to comment.