We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0e5d72 commit 90fa62cCopy full SHA for 90fa62c
.github/workflows/update.yml
@@ -6,7 +6,7 @@ permissions:
6
on: # yamllint disable-line rule:truthy
7
workflow_dispatch:
8
inputs:
9
- runid:
+ run-id:
10
description: 'GHA docs workflow run ID'
11
required: true
12
type: string
@@ -33,7 +33,7 @@ jobs:
33
gh run download \
34
--repo mpi4py/mpi4py \
35
--name mpi4py-docs \
36
- ${{ inputs.runid }}
+ ${{ inputs.run-id }}
37
env:
38
GITHUB_TOKEN: ${{ github.token }}
39
@@ -57,7 +57,9 @@ jobs:
57
version=$(cat version)
58
git add $version stable
59
git commit -m $version
60
- git show --stat
+
61
+ - name: Show changes
62
+ run: git show --stat
63
64
- name: Push changes
65
if: ${{ inputs.push }}
0 commit comments