Skip to content

Update github pages workflow #3

Update github pages workflow

Update github pages workflow #3

Workflow file for this run

name: Deploy Web App with build step
on:
push:
branches: [ "gh-pages" ]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
deploy:

Check failure on line 18 in .github/workflows/webapp.yml

View workflow run for this annotation

GitHub Actions / Deploy Web App with build step

Invalid workflow file

The workflow is not valid. .github/workflows/webapp.yml (Line: 18, Col: 3): The workflow must contain at least one job with no dependencies.
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Build
run: |
npm install
npm run prepublish
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
# Upload entire repository
path: '.'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2