|
@@ -0,0 +1,56 @@
|
|
|
+name: Release
|
|
|
+
|
|
|
+on:
|
|
|
+ push:
|
|
|
+ branches:
|
|
|
+ - beta
|
|
|
+ - dev-changesets
|
|
|
+
|
|
|
+permissions:
|
|
|
+ contents: read
|
|
|
+ pull-requests: write
|
|
|
+
|
|
|
+concurrency: ${{ github.workflow }}-${{ github.ref }}
|
|
|
+
|
|
|
+jobs:
|
|
|
+ release:
|
|
|
+ name: Release
|
|
|
+ runs-on: ubuntu-latest
|
|
|
+ steps:
|
|
|
+ - name: Checkout Repo
|
|
|
+ uses: actions/checkout@v4
|
|
|
+
|
|
|
+ - name: Setup Node.js 18
|
|
|
+ uses: actions/setup-node@v4
|
|
|
+ with:
|
|
|
+ node-version: 18
|
|
|
+
|
|
|
+ - name: Install PNPM
|
|
|
+ uses: pnpm/action-setup@v4
|
|
|
+ with:
|
|
|
+ version: 8
|
|
|
+
|
|
|
+ - name: Install Dependencies
|
|
|
+ run: pnpm install
|
|
|
+
|
|
|
+ - name: Enable Pre-release
|
|
|
+ run: pnpm changeset pre enter beta
|
|
|
+
|
|
|
+ - name: Versioning
|
|
|
+ run: pnpm changeset version
|
|
|
+
|
|
|
+ - name: Creating .npmrc
|
|
|
+ run: |
|
|
|
+ cat << EOF > "$HOME/.npmrc"
|
|
|
+ //registry.npmjs.org/:_authToken=$NPM_TOKEN
|
|
|
+ EOF
|
|
|
+ env:
|
|
|
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
|
+
|
|
|
+ - name: Create Release Pull Request
|
|
|
+ uses: changesets/action@v1
|
|
|
+ # with:
|
|
|
+ # publish: pnpm release
|
|
|
+ env:
|
|
|
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|