File tree 1 file changed +9
-9
lines changed
1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ permissions:
6
6
on : # yamllint disable-line rule:truthy
7
7
workflow_dispatch :
8
8
inputs :
9
- runid :
9
+ run-id :
10
10
description : ' GHA docs workflow run ID'
11
11
required : true
12
12
type : string
@@ -29,13 +29,11 @@ jobs:
29
29
uses : actions/checkout@v4
30
30
31
31
- name : Download documentation artifact
32
- run : |
33
- gh run download \
34
- --repo mpi4py/mpi4py \
35
- --name mpi4py-docs \
36
- ${{ inputs.runid }}
37
- env :
38
- GITHUB_TOKEN : ${{ github.token }}
32
+ uses : actions/download-artifact@v4
33
+ with :
34
+ repository : mpi4py/mpi4py
35
+ run-id : ${{ inputs.run-id }}
36
+ name : mpi4py-docs
39
37
40
38
- name : Update documentation contents
41
39
run : |
57
55
version=$(cat version)
58
56
git add $version stable
59
57
git commit -m $version
60
- git show --stat
58
+
59
+ - name : Show changes
60
+ run : git show --stat
61
61
62
62
- name : Push changes
63
63
if : ${{ inputs.push }}
You can’t perform that action at this time.
0 commit comments