Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…into v4
  • Loading branch information
MichaelWilson-online committed Aug 10, 2024
2 parents 633b19e + 3555251 commit b747ef3
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Deploy Quartz site to GitHub Pages

on:
push:
branches:
- v4

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

concurrency:
group: "pages"
cancel-in-progress: false

jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Fetch all history for git info
- uses: actions/setup-node@v3
with:
node-version: 18.14
- name: Install Dependencies
run: npm ci
- name: Build Quartz
run: npx quartz build
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
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@v2
1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blog.michaelwilson.online
8 changes: 8 additions & 0 deletions key
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
-----BEGIN OPENSSH PRIVATE KEY-----
b3BlbnNzaC1rZXktdjEAAAAACmFlczI1Ni1jdHIAAAAGYmNyeXB0AAAAGAAAABCKrVhhnC
xchUvh57pBenOcAAAAGAAAAAEAAAAzAAAAC3NzaC1lZDI1NTE5AAAAICm3E++CFYDcplBi
IorYXblTk8uUBk2UJw2yUFOF6HKPAAAAsKStrP4MLJ15N65PtVXCa+aYtAvLpkG81syub2
UcY2z+z6dg+QyCVqxNR6kaCcpRu9lHbOvu9laXI8XlBszI6xkqDFyjJEbLRuNZMocU2eNk
zEMeVceVp/NZsrSHQKLtKa+9CFOw7rH46KyC7XeOk7Lsx6EIcczOzg6AS2UZbcIEKEOIFa
QDd9N3Llv8Jw0+IN+u472oXDvNPHcBk8BfjujHQr0v3Nr9t3M9S0rgEHst
-----END OPENSSH PRIVATE KEY-----
1 change: 1 addition & 0 deletions key.pub
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICm3E++CFYDcplBiIorYXblTk8uUBk2UJw2yUFOF6HKP [email protected]

0 comments on commit b747ef3

Please sign in to comment.