Skip to content

Commit

Permalink
Merge branch 'main' of github.com:eQuake-Live/liveui
Browse files Browse the repository at this point in the history
  • Loading branch information
nakasyou committed Aug 27, 2024
2 parents ae422d7 + 6be8c48 commit e4a1a25
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Deno

on:
push:
branches: ["main"]

permissions:
contents: read
pages: write
id-token: write

jobs:
deploy:
runs-on: ubuntu-latest

steps:
- name: Setup repo
uses: actions/checkout@v4
- name: Configure GitHub Pages
uses: actions/[email protected]
- name: Setup Bun
uses: oven-sh/setup-bun@v2

- name: Install Deps
run: bun i
- name: Build
run: bun run build --base=/liveui/

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: './dist'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

0 comments on commit e4a1a25

Please sign in to comment.