feat: rename deploy.yml to yaml
Some checks failed
Deploy to GitHub Pages / build_site (push) Failing after 2m39s

This commit is contained in:
2024-04-24 02:43:01 +02:00
parent a47b3dadf8
commit 0fd743f3f1

25
.github/workflows/deploy.yaml vendored Normal file
View File

@@ -0,0 +1,25 @@
name: Deploy to GitHub Pages
on:
push:
branches: 'main'
jobs:
build_site:
runs-on: ubuntu-latest
container: jimfx/nodes:latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: pnpm install
- name: build
run: pnpm run build
- name: Upload Artifacts
uses: actions/upload-pages-artifact@v3
with:
# this should match the `pages` option in your adapter-static options
path: 'app/build/'