Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
hhenrichsen committed Jan 2, 2024
0 parents commit 81db3f3
Show file tree
Hide file tree
Showing 1,029 changed files with 237,316 additions and 0 deletions.
50 changes: 50 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Deploy

on:
push:
branches:
- main

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

# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true

jobs:
build:
name: Deploy
runs-on: ubuntu-latest

steps:
- name: Checkout repo
uses: actions/checkout@v3

- name: Setup Node
uses: actions/setup-node@v3

- name: Install dependencies
run: npm ci

- name: Install animation dependencies
run: npm ci
working-directory: animations

- name: Build project
run: npm run build -- --base=/${{ github.event.repository.name }}/

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

- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: "./dist"

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
15 changes: 15 additions & 0 deletions animations/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Generated files
node_modules
output
dist

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
Loading

0 comments on commit 81db3f3

Please sign in to comment.