quartz/.github/workflows/deploy-bun.yml
Miguel Pimentel cafebae307
npm update
2024-07-01 18:30:29 +00:00

57 lines
1.1 KiB
YAML

name: Quartz - Deploy to GitHub Pages (bun)
on:
workflow_dispatch:
# push:
# branches:
# - main
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
defaults:
run:
shell: bash
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
# with:
# fetch-depth: 0
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
# - name: Setup Node
# uses: actions/setup-node@v4
# with:
# node-version: 18
- name: Install Dependencies
run: bun install
- name: Build Quartz
run: bun run build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: public
deploy:
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4