diff --git a/.github/workflows/releases-changeset.yml b/.github/workflows/releases-changeset.yml new file mode 100644 index 0000000..af2c8fb --- /dev/null +++ b/.github/workflows/releases-changeset.yml @@ -0,0 +1,29 @@ +name: Release by Changeset + +on: + push: + branches: + - main + +concurrency: ${{ github.workflow }}-${{ github.ref }} + +jobs: + release: + name: Release + runs-on: ubuntu-latest + steps: + - name: Checkout Repo + uses: actions/checkout@v3 + + - name: Setup Node.js 16 + uses: actions/setup-node@v3 + with: + node-version: 16 + + - name: Install Dependencies + run: yarn + + - name: Create Release Pull Request + uses: changesets/action@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}