-
Notifications
You must be signed in to change notification settings - Fork 18
75 lines (72 loc) · 2.41 KB
/
pre-release.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
---
name: Manual Pre-Release Publish
on:
workflow_dispatch:
inputs:
npmTag:
description: 'NPM tag. Leave blank to use the default "next" tag.'
required: true
default: 'next'
preReleaseName:
description: 'Pre-release name. This is used in the version string, e.g. "beta" for `7.0.0-beta.0`. Leave blank to use the default "next".'
required: true
default: 'next'
preReleaseVersion:
description: 'The new pre-release version to create. Choose "existing" to increment the latest pre-release.'
required: true
type: choice
options:
- existing
- patch
- minor
- major
dryRun:
description: 'Do not touch or write anything. Show the commands.'
required: true
default: false
type: boolean
env:
DRY_RUN_ARG: ${{ inputs.dryRun && '--dry-run' || '' }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
HUSKY: '0'
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: 'main'
fetch-depth: 0
ssh-key: ${{ secrets.DEPLOY_KEY }}
- uses: actions/setup-node@v4
with:
node-version: 20.x
- uses: pnpm/action-setup@v4
with:
run_install: false
- name: Configure SSH Agent
uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.DEPLOY_KEY }}
- name: Package Manager Setup
run: |
pnpm set registry "https://registry.npmjs.org/"
pnpm set //registry.npmjs.org/:_authToken $NPM_TOKEN
pnpm whoami
- name: Git Setup
run: |
git config --global user.email "[email protected]"
git config --global user.name "WebdriverIO Release Bot"
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Publish Pre-Release
run: |
pnpm run build
if [ "${{inputs.preReleaseVersion}}" == "existing" ]; then
pnpx tsx scripts/release.ts $DRY_RUN_ARG --preRelease=${{inputs.preReleaseName}} --npm.tag=${{inputs.npmTag}}
else
pnpx tsx scripts/release.ts ${{inputs.preReleaseVersion}} $DRY_RUN_ARG --preRelease=${{inputs.preReleaseName}} --npm.tag=${{inputs.npmTag}}
fi
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}