We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3010cf4 commit 057bc49Copy full SHA for 057bc49
.github/workflows/release-alpha.yml
@@ -0,0 +1,21 @@
1
+name: Release alpha version
2
+
3
+on:
4
+ workflow_dispatch:
5
6
+jobs:
7
+ build:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: Extract branch name
11
+ shell: bash
12
+ run: |
13
+ echo "branch_name=${GITHUB_REF#refs/heads/}"
14
+ id: extract_branch
15
+ - uses: gravity-ui/release-action@v1
16
+ with:
17
+ github-token: ${{ secrets.GRAVITY_UI_BOT_GITHUB_TOKEN }}
18
+ npm-token: ${{ secrets.GRAVITY_UI_BOT_NPM_TOKEN }}
19
+ node-version: 14
20
+ npm-dist-tag: alpha
21
+ default-branch: ${{ env.branch_name }}
0 commit comments