Skip to content

Commit a0f8314

Browse files
committed
Add a stub prepare-release workflow
The `workflow_dispatch` trigger will not work for v3 unless this file is present
1 parent 307b281 commit a0f8314

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/prepare-release.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Prepare Release
2+
3+
on:
4+
workflow_dispatch:
5+
6+
env:
7+
CI: true
8+
9+
permissions:
10+
contents: read
11+
12+
jobs:
13+
build:
14+
runs-on: macos-12
15+
timeout-minutes: 15
16+
17+
strategy:
18+
matrix:
19+
node-version: [16]
20+
21+
steps:
22+
- run: echo "stub"

0 commit comments

Comments
 (0)