Skip to content

chore: update site url #5

chore: update site url

chore: update site url #5

Workflow file for this run

name: Deploy Documentation
on:
push:
branches: [dev]
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Stardust
run: |
curl -sSL https://raw.githubusercontent.com/nexlabstudio/stardust/dev/install.sh | bash
echo "$HOME/.stardust/bin" >> $GITHUB_PATH
- name: Build documentation
run: stardust build
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: dist
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4