We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16f1a0b commit 94bddaaCopy full SHA for 94bddaa
.github/workflows/.ci.yml
@@ -11,21 +11,19 @@ jobs:
11
contents: write
12
13
steps:
14
- - uses: actions/checkout@v3
15
- - uses: actions/setup-node@v3
+ - uses: actions/checkout@v5
+ - uses: oven-sh/setup-bun@v2
16
with:
17
- node-version: 16
18
- cache: 'yarn'
19
- - run: yarn install --frozen-lockfile --ignore-engines
+ bun-version: latest
20
21
- name: Build
22
run: |
23
- yarn build
+ bun build
24
echo > ./dist/.nojekyll
25
env:
26
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
27
- name: Deploy to GitHub Pages
28
- uses: peaceiris/actions-gh-pages@v3
+ uses: peaceiris/actions-gh-pages@v4
29
30
github_token: ${{ secrets.GITHUB_TOKEN }}
31
publish_dir: ./dist
0 commit comments