Skip to content

Deploy 86f2f6a79a48d92f8f3922c261fb7ef0e7bb880a to Github Pages #37

Deploy 86f2f6a79a48d92f8f3922c261fb7ef0e7bb880a to Github Pages

Deploy 86f2f6a79a48d92f8f3922c261fb7ef0e7bb880a to Github Pages #37

Workflow file for this run

name: 🚀 Deploy Github Pages
run-name: Deploy ${{ github.sha }} to Github Pages
concurrency: github-pages
on:
push:
branches: ["**"]
pull_request:
branches: ["**"]
jobs:
create_artifact:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
id: checkout
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ">=22"
- name: Install dependencies
id: install
run: npm install
- name: Build
id: build
run: npm run build
- name: Upload static files as artifact
id: deployment
uses: actions/upload-pages-artifact@v3
with:
path: ./
deploy:
needs: create_artifact
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