From 2ca59aac9ec251f5e127a90b2e59a75fdebc76e9 Mon Sep 17 00:00:00 2001 From: Tobias Macey Date: Tue, 23 Jan 2024 16:35:21 -0500 Subject: [PATCH] config: Enable semantic release on quince branch --- .github/workflows/release.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 58d7c99c0e..46a962154b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,6 +3,7 @@ on: push: branches: - master + - quince jobs: release: name: Release @@ -33,7 +34,10 @@ jobs: - name: Build run: npm run build - name: Release + uses: cycjimmy/semantic-release-action@v3 + with: + semantic_version: 16 + tag_format: v${version}-${{ env.GITHUB_REF_NAME }} env: GITHUB_TOKEN: ${{ secrets.SEMANTIC_RELEASE_GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.SEMANTIC_RELEASE_NPM_TOKEN }} - run: npx semantic-release