-
-
Notifications
You must be signed in to change notification settings - Fork 41
95 lines (78 loc) · 2.52 KB
/
alpha.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
name: Alpha Release
on:
workflow_dispatch:
inputs:
package_dir:
description: "Select the package directory to release"
required: true
default: "packages/visual-service"
type: choice
options:
- packages/ocr-service
- packages/visual-reporter
- packages/visual-service
- packages/webdriver-image-comparison
concurrency: ${{ github.workflow }}-${{ github.ref }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_CONFIG_PROVENANCE: true
jobs:
alpha-release:
name: Alpha Release
runs-on: ubuntu-latest
permissions: write-all
strategy:
matrix:
node-version: [20.x]
steps:
- name: ⬇️ Checkout Repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: 🔧 Setup Git
run: |
git config --global user.email "[email protected]"
git config --global user.name "WebdriverIO Release Bot"
- name: 🔧 Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 8
- name: 🔧 Setup NPM
run: |
npm set registry "https://registry.npmjs.org/"
npm set //registry.npmjs.org/:_authToken $NPM_TOKEN
npm whoami
- name: 🔧 Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: 🧩 Install Dependencies
run: pnpm pnpm.install.workaround
- name: 🔄 Navigate to Package Directory
run: |
cd ${{ github.event.inputs.package_dir }}
pwd
- name: 🏗️ Build the Package
run: |
cd ${{ github.event.inputs.package_dir }}
pnpm build
- name: 🔢 Bump Version for Alpha Release
run: |
cd ${{ github.event.inputs.package_dir }}
npm version prerelease --preid=alpha
- name: 📦 Commit and Push Version Changes
working-directory: ${{ github.event.inputs.package_dir }}
run: |
git add package.json
git commit -m "chore: bump version for alpha release [skip ci]"
git push origin HEAD
- name: 🚀 Publish to npm with Alpha Tag
run: |
cd ${{ github.event.inputs.package_dir }}
npm publish --tag alpha
- name: 📦 Push Changes and Tags to GitHub
run: |
cd ${{ github.event.inputs.package_dir }}
git push --follow-tags