Create version #6
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: Create version | |
on: | |
workflow_dispatch: | |
inputs: | |
versionType: | |
description: Version type | |
required: true | |
default: 'patch' | |
type: choice | |
options: | |
- patch | |
- minor | |
- major | |
- premajor | |
- preminor | |
- prepatch | |
- prerelease | |
jobs: | |
create-version: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ssh-key: ${{ secrets.ADMIN_SSH_KEY }} | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 16 | |
- run: | | |
git config user.name rescriptbr-admin | |
git config user.email rescriptbr@gmail.com | |
- name: Generate new version ${{ github.event.inputs.versionType }} | |
run: | | |
yarn version --${{ github.event.inputs.versionType }} | |
- name: Push the tags | |
run: git push origin main --tags |