Added PowerShell 7.0 to list of prerequisites in 4-prerequisites.md #255
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 GitHub Actions / Build and Preview Workshop DocsInvalid workflow file
|
||
if: "! github.event.pull_request.head.repo.fork " | ||
name: Preview | ||
needs: preview-docs | ||
uses: ./.github/workflows/publish-docs.yml |