Skip to content

Commit 90fa62c

Browse files
committedMay 17, 2024··
GHA: Fix update workflow
1 parent d0e5d72 commit 90fa62c

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed
 

‎.github/workflows/update.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ permissions:
66
on: # yamllint disable-line rule:truthy
77
workflow_dispatch:
88
inputs:
9-
runid:
9+
run-id:
1010
description: 'GHA docs workflow run ID'
1111
required: true
1212
type: string
@@ -33,7 +33,7 @@ jobs:
3333
gh run download \
3434
--repo mpi4py/mpi4py \
3535
--name mpi4py-docs \
36-
${{ inputs.runid }}
36+
${{ inputs.run-id }}
3737
env:
3838
GITHUB_TOKEN: ${{ github.token }}
3939

@@ -57,7 +57,9 @@ jobs:
5757
version=$(cat version)
5858
git add $version stable
5959
git commit -m $version
60-
git show --stat
60+
61+
- name: Show changes
62+
run: git show --stat
6163

6264
- name: Push changes
6365
if: ${{ inputs.push }}

0 commit comments

Comments
 (0)
Please sign in to comment.