Skip to content

Commit

Permalink
gh action
Browse files Browse the repository at this point in the history
  • Loading branch information
qsliu2017 committed Jan 11, 2024
1 parent 82bced0 commit 328536a
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Deploy to GitHub Pages

on:
push:
branches: [main]
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v1
- uses: actions/cache@v3
with:
path: "**/node_modules"
key: bun-${{ hashFiles('**/bun.lockb') }}
restore-keys: |
bun-
- run: bun i
- run: bun run build
- name: Archive artifact
run: |
tar \
--dereference --hard-dereference \
--directory dist \
-cvf "$RUNNER_TEMP/artifact.tar" \
--exclude=.git \
--exclude=.github \
.
- uses: actions/upload-artifact@v4
with:
name: github-pages
path: ${{ runner.temp }}/artifact.tar
if-no-files-found: error
deploy:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/deploy-pages@v4
1 change: 1 addition & 0 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@ import preact from "@preact/preset-vite";

// https://vitejs.dev/config/
export default defineConfig({
base: "/tool" /* GitHub Pages */,
plugins: [preact()],
});

0 comments on commit 328536a

Please sign in to comment.