Skip to content

Commit 036332c

Browse files
committed
bruh
1 parent 7972f53 commit 036332c

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

.github/workflows/static.yml renamed to .github/workflows/deploy.yaml

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,20 @@
1-
# Simple workflow for deploying static content to GitHub Pages
21
name: Deploy static content to Pages
32

43
on:
5-
# Runs on pushes targeting the default branch
64
push:
75
branches: ["master"]
8-
9-
# Allows you to run this workflow manually from the Actions tab
106
workflow_dispatch:
117

12-
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
138
permissions:
149
contents: read
1510
pages: write
1611
id-token: write
1712

18-
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
19-
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
2013
concurrency:
2114
group: "pages"
2215
cancel-in-progress: false
2316

2417
jobs:
25-
# Single deploy job since we're just deploying
2618
deploy:
2719
environment:
2820
name: github-pages
@@ -38,11 +30,12 @@ jobs:
3830
with:
3931
bun-version: latest
4032
- name: Build
41-
run: bun run server/build.js --build
33+
run: |
34+
bun install
35+
bun run server/build.js --build
4236
- name: Upload artifact
4337
uses: actions/upload-pages-artifact@v3
4438
with:
45-
# Upload entire repository
4639
path: dist
4740
- name: Deploy to GitHub Pages
4841
id: deployment

0 commit comments

Comments
 (0)