Skip to content

Commit

Permalink
🤖 ci: add GH Page publish process
Browse files Browse the repository at this point in the history
  • Loading branch information
andrepg committed Apr 14, 2024
1 parent 1d422f3 commit d079a78
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions website/.github/deploy-website.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Deploy website

on:
push:
branches: ["main"]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "18.x"
cache: "npm"

- run: npm ci
- run: run run build

- uses: actions/[email protected]
with:
name: "website-build-artifact"
path: "dist/**"
overwrite: true

deploy:
needs: build

permissions:
pages: write
id-token: write

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
with:
artifact_name: "website-build-artifact"

0 comments on commit d079a78

Please sign in to comment.