Skip to content

Commit

Permalink
Create pages
Browse files Browse the repository at this point in the history
  • Loading branch information
JorensM authored Dec 27, 2024
1 parent 74aab20 commit 9d5c9ea
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/pages
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build and Deploy
on: [push]
permissions:
contents: write
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4

- name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built.
run: |
npm ci
npm run build

- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: dist # The folder the action should deploy.

0 comments on commit 9d5c9ea

Please sign in to comment.