Skip to content

Commit

Permalink
Use imlib.
Browse files Browse the repository at this point in the history
  • Loading branch information
thesoftwarephilosopher committed Jul 30, 2024
1 parent 8a3c798 commit 8e84863
Show file tree
Hide file tree
Showing 14 changed files with 1,321 additions and 898 deletions.
60 changes: 60 additions & 0 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
# Simple workflow for deploying static content to GitHub Pages
name: Deploy static content to Pages

on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "22"
cache: npm

- name: Setup Pages
uses: actions/configure-pages@v3

- name: Install dependencies
run: npm ci

- name: Build site
run: npm run generate

- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: 'docs'

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
7 changes: 2 additions & 5 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,10 @@
"version": "0.2.0",
"configurations": [
{
"type": "pwa-node",
"type": "node-terminal",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/src/main.ts"
"command": "npm run dev",
}
]
}
4 changes: 3 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{
"typescript.preferences.importModuleSpecifierEnding": "js"
"task.allowAutomaticTasks": "on",
"typescript.preferences.importModuleSpecifierEnding": "js",
"typescript.tsdk": "node_modules\\typescript\\lib",
}
11 changes: 0 additions & 11 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,6 @@
"runOptions": {
"runOn": "folderOpen"
}
},
{
"type": "npm",
"script": "start",
"group": "build",
"problemMatcher": [],
"label": "npm: start",
"detail": "esbuild --watch",
"runOptions": {
"runOn": "folderOpen"
}
}
]
}
Loading

0 comments on commit 8e84863

Please sign in to comment.