mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-02-01 14:11:02 +00:00
Fix workflow dispatch inputs
This commit is contained in:
parent
c60ac11a49
commit
f04863f1ef
7
.github/workflows/docs.yml
vendored
7
.github/workflows/docs.yml
vendored
@ -28,6 +28,11 @@ jobs:
|
||||
build-docs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Print inputs
|
||||
if: ${{ github.event_name == 'workflow_dispatch' }}
|
||||
run: |
|
||||
echo "Inputs: ${{ toJson(inputs) }}"
|
||||
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Configure Git Credentials
|
||||
@ -79,5 +84,5 @@ jobs:
|
||||
fi
|
||||
|
||||
- name: Deploy to GitHub Pages
|
||||
if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' && github.event.inputs.deploy == true }}
|
||||
if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' && github.event.inputs.deploy == 'true' }}
|
||||
run: mkdocs gh-deploy --force
|
||||
|
Loading…
Reference in New Issue
Block a user