Skip to content

Added PowerShell 7.0 to list of prerequisites in 4-prerequisites.md #255

Added PowerShell 7.0 to list of prerequisites in 4-prerequisites.md

Added PowerShell 7.0 to list of prerequisites in 4-prerequisites.md #255

Workflow file for this run

name: Build and Preview Workshop Docs
on:
pull_request:
branches:
- main
types:
- opened
- reopened
- synchronize
- closed
paths:
- 'docs/**'
- 'mkdocs.yml'
- 'Makefile'
concurrency:
group: preview-${{ github.ref }}
cancel-in-progress: true
jobs:
preview-docs:
runs-on: ubuntu-latest
name: Build
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.8"
- name: Capture branch and tag
id: branch_name
run: |
echo "SOURCE_BRANCH=${GITHUB_REF#refs/heads/}" >> $GITHUB_ENV
echo "SOURCE_TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
- name: Build workshop site
if: " github.event.action != 'closed' "
run: |
echo "GIT_PYTHON_REFRESH=quiet"
make build-docs-website
- name: Release preview to branch
if: "! github.event.pull_request.head.repo.fork "
uses: rossjrw/pr-preview-action@v1
with:
source-dir: ./dist/
preview-branch: gh-pages
umbrella-dir: pr-preview
action: auto
publish-preview-docs:

Check failure on line 49 in .github/workflows/preview-docs.yml

View workflow run for this annotation

GitHub Actions / Build and Preview Workshop Docs

Invalid workflow file

The workflow is not valid. .github/workflows/preview-docs.yml (Line: 49, Col: 3): Error calling workflow 'Azure/aca-dotnet-workshop/.github/workflows/publish-docs.yml@0bd3906ddacebabd90ac67a6cea76f1ff4a9b977'. The workflow is requesting 'pages: write, id-token: write', but is only allowed 'pages: none, id-token: none'.
if: "! github.event.pull_request.head.repo.fork "
name: Preview
needs: preview-docs
uses: ./.github/workflows/publish-docs.yml