Skip to content

Commit 0dec71f

Browse files
Merge pull request #1 from ArcticFoxPro/main
Update publish.yml
2 parents a314a70 + 59a8abe commit 0dec71f

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/publish.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: publish
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
jobs:
8+
publish:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Setup nodejs
12+
uses: actions/setup-node@v1
13+
with:
14+
node-version: 22
15+
- name: Checkout
16+
uses: actions/checkout@v4
17+
- name: Install dependencies
18+
run: |
19+
sudo corepack enable
20+
corepack yarn
21+
- name: Publish
22+
run: yarn run publish

0 commit comments

Comments
 (0)