Skip to content

Commit

Permalink
chore: add workflow to release alpha version (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
SeqviriouM authored Sep 2, 2024
1 parent f1112c1 commit a63a92f
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/release-alpha.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Release alpha version

on:
workflow_dispatch:
inputs:
branch:
description: 'Branch name'
required: true
default: 'main'

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Aplha release from ${{ github.ref_name }} with ${{ github.event.inputs.manualVersion }} version
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: ${{ github.event.inputs.branch }}
npm-dist-tag: untagged
npm-preid: alpha
npm-version: 'prepatch'
skip-github-release: true

0 comments on commit a63a92f

Please sign in to comment.