Release alpha version #148
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |