Skip to content

Commit

Permalink
feat: copied from pc (#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyzyl-ool authored Oct 12, 2023
1 parent 031849a commit 5b128b2
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/release-alpha.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Release alpha version

on:
workflow_dispatch:
inputs:
manualVersion:
type: string
required: false
description: 'If your build failed and the version is already exists you can set version of package manually, e.g. 3.0.0-alpha.0. Use the prefix `alpha` otherwise you will get error.'
prerelease:
type: choice
description: Release type, patch is used by default
default: 'prerelease'
options:
- prerelease
- prepatch
- preminor
- premajor

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
npm-dist-tag: alpha
npm-preid: alpha
npm-version: ${{ github.event.inputs.manualVersion || github.event.inputs.prerelease }}

0 comments on commit 5b128b2

Please sign in to comment.