Skip to content

add redirects

add redirects #2

Workflow file for this run

name: deploy
on:
push:
branches: ["main"]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
env:
BUILD_PATH: "."
jobs:
www:
name: www
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: pages
id: configpages
uses: actions/configure-pages@v3
- name: artifact
uses: actions/upload-pages-artifact@v1
with:
path: ${{ env.BUILD_PATH }}/www
deploy:
environment:
name: envpages
url: ${{ steps.deployment.outputs.page_url }}
needs: build

Check failure on line 30 in .github/workflows/deploy.yml

View workflow run for this annotation

GitHub Actions / deploy

Invalid workflow file

The workflow is not valid. .github/workflows/deploy.yml (Line: 30, Col: 12): Job 'deploy' depends on unknown job 'build'.
runs-on: ubuntu-latest
name: deploypages
steps:
- name: pages
id: deployment
uses: actions/deploy-pages@v1