diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml deleted file mode 100644 index f2a886a62..000000000 --- a/.github/release-drafter.yml +++ /dev/null @@ -1,18 +0,0 @@ -name-template: "v$NEXT_PATCH_VERSION" -tag-template: "v$NEXT_PATCH_VERSION" -categories: - - title: "🚀 Features" - label: "Feature 🎁" - - title: "💣 Breaking Change" - label: "Breaking Change 💣" - - title: "🐛 Bug Fixes" - label: "Bug 🐛" - - title: "📝 Documentation" - label: "Documentation 📖" - - title: "🔨 Maintenance" - label: "Maintenance 🔨" -change-template: "- $TITLE (#$NUMBER)" -template: | - ## v$NEXT_PATCH_VERSION - - $CHANGES diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 000000000..1d211a347 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,36 @@ +name: Release +on: + push: + branches: + - main + +permissions: + contents: read # for checkout + +jobs: + release: + name: Release + runs-on: ubuntu-latest + permissions: + contents: write # to be able to publish a GitHub release + issues: write # to be able to comment on released issues + pull-requests: write # to be able to comment on released pull requests + id-token: write # to enable use of OIDC for npm provenance + steps: + - name: Checkout + uses: actions/checkout@v3 + with: + fetch-depth: 0 + - name: Setup Node.js + uses: actions/setup-node@v3 + with: + node-version: "lts/*" + - name: Install dependencies + run: yarn install + - name: Build + run: yarn build + - name: Release + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + NPM_TOKEN: ${{ secrets.NPM_TOKEN }} + run: npx semantic-release