-
Notifications
You must be signed in to change notification settings - Fork 8
61 lines (54 loc) · 1.79 KB
/
publish_prerelease.yml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: 'Publish (pre-release)'
on:
workflow_dispatch:
inputs:
new_version:
description: 'version type (use prerelease for bumping pre-release version):'
required: true
type: choice
default: 'prerelease'
options:
- prepatch
- preminor
- premajor
- prerelease
npm_tag:
required: true
description: 'NPM tag:'
type: choice
default: 'beta'
options:
- alpha
- beta
- rc
custom_version:
description: 'use syntax x.y.z-beta.0, without "v" (it ignore "version type" parameter):'
required: false
run-name: Publish ${{ inputs.new_version }} vk-tunnel-client ${{ inputs.custom_version }}
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.DEVTOOLS_GITHUB_TOKEN }}
- name: Setting up the repository environment
uses: ./.github/actions/setup
- name: Bump version
id: updated_versions_info
uses: ./.github/actions/bump-version
with:
version: ${{ github.event.inputs.custom_version || github.event.inputs.new_version }}
npm_tag: ${{ github.event.inputs.npm_tag }}
- name: Validation
uses: ./.github/actions/validation
- name: Complete publish
uses: ./.github/actions/complete-publish
with:
branch: ${{ github.ref }}
prev_version: ${{ steps.updated_versions_info.outputs.prev_version }}
next_version: ${{ steps.updated_versions_info.outputs.next_version }}
npm_tag: ${{ github.event.inputs.npm_tag }}
token: ${{ secrets.DEVTOOLS_GITHUB_TOKEN }}
npm_token: ${{ secrets.NPMJS_PUBLISH_TOKEN }}