Skip to content

Commit 94bddaa

Browse files
committed
ci: fix github workflows
1 parent 16f1a0b commit 94bddaa

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

.github/workflows/.ci.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,19 @@ jobs:
1111
contents: write
1212

1313
steps:
14-
- uses: actions/checkout@v3
15-
- uses: actions/setup-node@v3
14+
- uses: actions/checkout@v5
15+
- uses: oven-sh/setup-bun@v2
1616
with:
17-
node-version: 16
18-
cache: 'yarn'
19-
- run: yarn install --frozen-lockfile --ignore-engines
17+
bun-version: latest
2018

2119
- name: Build
2220
run: |
23-
yarn build
21+
bun build
2422
echo > ./dist/.nojekyll
2523
env:
2624
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2725
- name: Deploy to GitHub Pages
28-
uses: peaceiris/actions-gh-pages@v3
26+
uses: peaceiris/actions-gh-pages@v4
2927
with:
3028
github_token: ${{ secrets.GITHUB_TOKEN }}
3129
publish_dir: ./dist

0 commit comments

Comments
 (0)