From 6a4f678a7eabd9ea9b1bde07580325fb696643b5 Mon Sep 17 00:00:00 2001 From: Andrey Morozov Date: Wed, 7 Feb 2024 18:56:12 +0300 Subject: [PATCH] ci: fix v5 CI --- .github/workflows/ci.yml | 2 +- .github/workflows/release-v5.yml | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/release-v5.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7f97943e91..9bb52a2200 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,7 +2,7 @@ name: CI on: push: - branches: [main, next] + branches: [main, next, v5] pull_request: jobs: diff --git a/.github/workflows/release-v5.yml b/.github/workflows/release-v5.yml new file mode 100644 index 0000000000..de01de6d2c --- /dev/null +++ b/.github/workflows/release-v5.yml @@ -0,0 +1,18 @@ +name: Release V5 + +on: + push: + branches: [v5] + +jobs: + release: + runs-on: ubuntu-latest + steps: + - uses: gravity-ui/release-action@v1 + with: + github-token: ${{ secrets.GRAVITY_UI_BOT_GITHUB_TOKEN }} + npm-token: ${{ secrets.GRAVITY_UI_BOT_NPM_TOKEN }} + node-version: 18 + default-branch: v5 + npm-dist-tag: untagged + skip-github-release: true