On dispatch or push development branch #81
Workflow file for this run
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: On dispatch or push development branch | ||
on: | ||
push: | ||
# branches: | ||
# - '*doc/*' | ||
branches-ignore: | ||
- main | ||
- dependabot/** # https://github.blog/changelog/2021-02-19-github-actions-workflows-triggered-by-dependabot-prs-will-run-with-read-only-permissions/ | ||
workflow_dispatch: | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
# context_dump: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: <DEBUG> Dump GitHub context | ||
# env: | ||
# GITHUB_CONTEXT: ${{ toJson(github) }} | ||
# run: echo "$GITHUB_CONTEXT" | ||
# shell: bash | ||
publish_doc: | ||
uses: ./.github/workflows/wc_publishSite.yml | ||
Check failure on line 26 in .github/workflows/on_push_dev.yml GitHub Actions / .github/workflows/on_push_dev.ymlInvalid workflow file
|
||
with: | ||
publish: "yes" |