Skip to content

Commit

Permalink
chore: added beta release workflow (#181)
Browse files Browse the repository at this point in the history
  • Loading branch information
zefirka authored Jun 26, 2023
1 parent 6291c2a commit 7598312
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/release-beta.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Build and publish -beta tag for @gravity-ui/chartkit
# Runs manually in Actions tabs in github
# Runs on any branch except main

name: Release beta version

on:
workflow_dispatch:

jobs:
release:
runs-on: ubuntu-latest
if: ${{ github.ref != 'refs/heads/main' }}
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: 14
npm-dist-tag: beta
prerelease: true
default-branch: ${{ github.ref }}

0 comments on commit 7598312

Please sign in to comment.