Skip to content

Commit

Permalink
Create pages.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
arcanis committed Mar 25, 2024
1 parent ab9f045 commit 61082e3
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/pages.yml
@@ -0,0 +1,37 @@
name: Pages

on:
workflow_dispatch:
page_build:

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

- name: Build the website
run: cd website && curl https://raw.githubusercontent.com/arcanis/mael.dev-docs/main/install.sh | tee /dev/stderr | bash

- name: Upload Artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./website/build

deploy:
runs-on: ubuntu-latest
needs: build

permissions:
pages: write
id-token: write

environment:
name: github-pages
url: ${{steps.deployment.outputs.page_url}}

steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

0 comments on commit 61082e3

Please sign in to comment.