We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5b7172 commit d09281dCopy full SHA for d09281d
1 file changed
.github/workflows/publish.yml
@@ -6,19 +6,14 @@ jobs:
6
steps:
7
- uses: actions/checkout@v3
8
9
- - name: Set Node Version to 22
10
- uses: actions/setup-node@v2
11
- with:
12
- node-version: '22'
13
-
14
- - name: Enable Corepack
15
- run: corepack enable
+ - name: Setup Bun
+ uses: oven-sh/setup-bun@v2
16
17
- name: Install Dependencies
18
- run: yarn install --frozen-lockfile
+ run: bun install --frozen-lockfile
19
20
- name: Build
21
- run: yarn build
+ run: bun run build
22
23
- name: Push to Build Branch
24
if: github.ref == 'refs/heads/main'
0 commit comments