Skip to content

Commit

Permalink
chore: add github action to release beta versions
Browse files Browse the repository at this point in the history
  • Loading branch information
ValeraS committed Sep 20, 2024
1 parent 3cdc5e7 commit 5d57bae
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/release-beta.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# Build and publish -beta tag for @gravity-ui/date-components
# Runs manually in Actions tabs in github
# Runs on any branch except main

name: Release beta version

on:
workflow_dispatch:
inputs:
version:
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-beta.0. Use the prefix `beta` otherwise you will get error.'

jobs:
build:
runs-on: ubuntu-latest
steps:
- run: |
if [ "${{ github.event.inputs.version }}" != "" ]; then
if [[ "${{ github.event.inputs.version }}" != *"beta"* ]]; then
echo "version set incorrectly! Check that is contains beta in it's name"
exit 1
fi
fi
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
registry-url: 'https://registry.npmjs.org'
- name: Install Packages
run: npm ci
- name: Lint Files
run: npm run lint
- name: Typecheck
run: npm run typecheck
- name: Test
run: npm test
- name: Bump version
run: |
echo ${{ github.event.inputs.version }}
if [ "${{ github.event.inputs.version }}" == "" ]; then
npm version prerelease --preid=beta --git-tag-version=false
else
npm version ${{ github.event.inputs.version }} --git-tag-version=false
fi
- name: Publish version
run: npm publish --tag beta --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.GRAVITY_UI_BOT_NPM_TOKEN }}
shell: bash

0 comments on commit 5d57bae

Please sign in to comment.