Skip to content

🔥 server: remove declined activity filter #673

🔥 server: remove declined activity filter

🔥 server: remove declined activity filter #673

Workflow file for this run

name: docs
on:
push:
branches: [sandbox]
jobs:
docs:
environment:
name: github-pages
url: ${{ steps.pages.outputs.page_url }}
permissions:
pages: write
id-token: write
runs-on: ubuntu-latest
env: { NX_DAEMON: false }
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
fetch-tags: true
- uses: actions/setup-node@v6
with:
node-version: "^24.14.1"
- uses: foundry-rs/foundry-toolchain@v1
with:
version: v1.5.1
- uses: actions/cache@v5
with:
path: .nx/cache
key: nx-${{ runner.os }}-${{ github.sha }}
restore-keys: nx-${{ runner.os }}-
- run: corepack enable
- run: pnpm install --frozen-lockfile
- run: pnpm nx build docs
- uses: actions/upload-pages-artifact@v4
with:
path: docs/dist
- uses: actions/deploy-pages@v4
id: pages