Skip to content

chore: Fix deployment #10

chore: Fix deployment

chore: Fix deployment #10

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
test:
name: build and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Install mdbook
uses: taiki-e/install-action@mdbook
- name: Install mdbook-linkcheck
uses: taiki-e/install-action@mdbook-linkcheck
- run: mdbook build
- name: Upload artifact
uses: actions/upload-pages-artifact@v4
with:
path: ./book
# Check documentation links aren't broken
link-checker:
uses: argumentcomputer/ci-workflows/.github/workflows/links-check.yml@main
deploy:
#if: github.ref_name == 'main' && github.event_name == 'push'
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build

Check failure on line 36 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 36, Col: 12): Job 'deploy' depends on unknown job 'build'.
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4