-
Notifications
You must be signed in to change notification settings - Fork 10
39 lines (35 loc) · 956 Bytes
/
create-version.yml
File metadata and controls
39 lines (35 loc) · 956 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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