Skip to content

Commit

Permalink
Auto stash before rebase of "HEAD" onto "feature/quartz"
Browse files Browse the repository at this point in the history
  • Loading branch information
jimbrig committed May 20, 2024
1 parent d610cc1 commit acb1df7
Show file tree
Hide file tree
Showing 2,187 changed files with 238 additions and 20,476 deletions.
21 changes: 0 additions & 21 deletions .export-ignore

This file was deleted.

62 changes: 62 additions & 0 deletions .github/workflows/quartz.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
name: Deploy to GitHub pages

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false

on:
push:
branches:
- feature/quartz
pull_request:
branches:
- feature/quartz
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: 'true'
fetch-depth: 0 # Fetch all history
- name: Apply configurations
run: |
cp quartz.config.ts quartz.layout.ts quartz
cp -rf content/* quartz/content/
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: 'npm'
cache-dependency-path: quartz/package-lock.json
- name: Install Node.js dependencies
working-directory: quartz
run: npm ci --omit=dev
- name: Build website
run: npx quartz build
working-directory: quartz
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: quartz/public

# Deployment job
deploy:
needs: build
if: ${{ github.ref == 'refs/heads/main'}}
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
actions: read # to download an artifact uploaded by `actions/upload-pages-artifact@v3`
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
6 changes: 0 additions & 6 deletions .markdownlintignore

This file was deleted.

14 changes: 0 additions & 14 deletions .markdownlintrc

This file was deleted.

Binary file removed 05-SYSTEM/Assets/Icons/about.png
Binary file not shown.
Binary file removed 05-SYSTEM/Assets/Icons/clock.png
Binary file not shown.
Binary file removed 05-SYSTEM/Assets/Images/Git.png
Binary file not shown.
Binary file not shown.
Binary file removed 05-SYSTEM/Assets/Images/RAG-Workflow.png
Binary file not shown.
Binary file removed 05-SYSTEM/Assets/Images/ba-infogph.png
Binary file not shown.
Binary file removed 05-SYSTEM/Assets/Images/todoist-logo.png
Binary file not shown.
7 changes: 0 additions & 7 deletions 05-SYSTEM/Assets/Styles/_font-icons.scss

This file was deleted.

9 changes: 0 additions & 9 deletions 05-SYSTEM/Assets/Styles/_fonts.scss

This file was deleted.

Loading

0 comments on commit acb1df7

Please sign in to comment.