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 66851da commit a5a3b04Copy full SHA for a5a3b04
.github/workflows/static.yml
@@ -19,16 +19,16 @@ jobs:
19
- name: Set up Bun
20
uses: oven-sh/setup-bun@v2
21
with:
22
- bun-version: '1.1.29' # Use the version of Bun you want
+ bun-version: '1.1.29'
23
24
- name: Install dependencies
25
- run: bun install # Use bun to install dependencies
+ run: bun install
26
27
- name: Build the project
28
- run: bun run build # Run your build command using Bun
+ run: bun run build
29
30
- name: Deploy to GitHub Pages
31
uses: peaceiris/actions-gh-pages@v3
32
33
- github_token: ${{ secrets.GITHUB_TOKEN }}
34
- folder: build # The build folder generated after the build process
+ github_token: ${{ secrets.github_token }}
+ folder: build
0 commit comments