Skip to content

Initial org root landing page #1

Initial org root landing page

Initial org root landing page #1

Workflow file for this run

name: Upload
on:
pull_request:
push:
branches:
- master
permissions:
contents: read
pages: write
id-token: write
jobs:
build-pages:

Check failure on line 15 in .github/workflows/website.yml

View workflow run for this annotation

GitHub Actions / Upload

Invalid workflow file

The workflow is not valid. .github/workflows/website.yml (Line: 15, Col: 3): The workflow must contain at least one job with no dependencies.
if: github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
needs: collect
steps:
- uses: cachix/install-nix-action@v30
with:
nix_path: nixpkgs=channel:nixos-unstable
- uses: cachix/cachix-action@v15
with:
name: pyproject-nix
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- uses: actions/[email protected]
- name: Run build
run: nix build -L -v
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./result
deploy-pages:
if: github.ref == 'refs/heads/master'
needs: build-pages
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