Skip to content

Gh pages website

Gh pages website #1

name: Build and Release UltraStar Format Specification Website
# Controls when the workflow will run
on:
# Triggers the workflow on merges to master, release branches,
# all PRs, and release tags
push:
branches:
- main
# On anything pull request related
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
deploy:

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

View workflow run for this annotation

GitHub Actions / Build and Release UltraStar Format Specification Website

Invalid workflow file

The workflow is not valid. .github/workflows/build_and_release.yml (Line: 18, Col: 3): The workflow must contain at least one job with no dependencies.
if: ${{ github.ref == 'refs/heads/main' }}
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
needs: build
runs-on: ubuntu-latest
permissions:
contents: read
pages: write
id-token: write
steps:
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
# Upload docs folder
path: './docs'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2