Skip to content

Commit

Permalink
ci: use release-actions for alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
yuberdysheva committed Sep 26, 2023
1 parent ed935f2 commit 4873289
Showing 1 changed file with 9 additions and 28 deletions.
37 changes: 9 additions & 28 deletions .github/workflows/release-alpha.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,36 +9,17 @@ on:
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.'

jobs:
build:
release:
runs-on: ubuntu-latest
steps:
- run: |
if [ "${{ github.event.inputs.manualPackageVersion }}" != "" ]; then
if [[ "${{ github.event.inputs.manualPackageVersion }}" != *"alpha"* ]]; then
echo "manualPackageVersion set incorrectly! Check that is contains alpha in it's name"
exit 1
fi
fi
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
echo ${{ github.event.inputs.manualPackageVersion }}
- uses: gravity-ui/release-action@yuberdysheva/alpha-release
with:
github-token: ${{ secrets.GRAVITY_UI_BOT_GITHUB_TOKEN }}
npm-token: ${{ secrets.GRAVITY_UI_BOT_NPM_TOKEN }}
node-version: 18
registry-url: 'https://registry.npmjs.org'
- run: npm ci
shell: bash
- run: npm test
shell: bash
- name: Bump and commit version
run: |
echo ${{ github.event.inputs.manualPackageVersion }}
if [ "${{ github.event.inputs.manualPackageVersion }}" == "" ]; then
npm version prerelease --preid=alpha --git-tag-version=false
else
npm version ${{ github.event.inputs.manualPackageVersion }} --git-tag-version=false
fi
- name: Publish version
run: npm publish --tag alpha --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.GRAVITY_UI_BOT_NPM_TOKEN }}
shell: bash
npm-dist-tag: alpha
default-branch: alpha
manual-version: ${{ github.event.inputs.manualPackageVersion }}
prerelease: true

0 comments on commit 4873289

Please sign in to comment.