Skip to content

Commit

Permalink
added ci setting
Browse files Browse the repository at this point in the history
  • Loading branch information
tomoyanonymous committed Aug 21, 2023
1 parent e8bce6d commit 5f58eab
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ on:
push:
branches:
- v4
workflow_dispatch:

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

jobs:
build-and-test:
Expand Down Expand Up @@ -42,3 +48,41 @@ jobs:

- name: Ensure Quartz builds
run: npx quartz build
build:
runs-on: ubuntu-latest
# needs: build-and-test

concurrency:
group: "pages"
cancel-in-progress: false
steps:
- run: git config --global core.quotepath false
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: setup Pages
id: pages
uses: actions/configure-pages@v3
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm i
- run: npx quartz build
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: ./public
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url}}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2

0 comments on commit 5f58eab

Please sign in to comment.