Skip to content

Commit

Permalink
chore: add v4 release workflow (#421)
Browse files Browse the repository at this point in the history
* chore: add v4 release workflow

* chore: add v4 to CI workflow
  • Loading branch information
korvin89 authored Feb 13, 2024
1 parent 0dfb616 commit 3324fc1
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: CI

on:
push:
branches: [main]
branches: [main, v4]
pull_request:
branches: [main]
branches: [main, v4]

jobs:
verify_files:
Expand Down
19 changes: 19 additions & 0 deletions .github/workflows/release-v4.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Release V4

on:
push:
branches: [v4]

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: v4
npm-dist-tag: untagged
skip-github-release: true

0 comments on commit 3324fc1

Please sign in to comment.