Skip to content

fix: update adventure docs and JD links #7

fix: update adventure docs and JD links

fix: update adventure docs and JD links #7

Workflow file for this run

name: "Publish"
on:
push:
branches: ["master", "main"]
tags-ignore: ["**"]
jobs:
build:
runs-on: "ubuntu-latest"
steps:
- name: "checkout repository"
uses: "actions/checkout@v4"
- name: "upload to artifact"
uses: "actions/upload-pages-artifact@v3"
with:
path: "src/"
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"
id: "deployment"
uses: "actions/deploy-pages@v4"