File tree 2 files changed +4
-10
lines changed
2 files changed +4
-10
lines changed Original file line number Diff line number Diff line change 11
11
required : false
12
12
type : string
13
13
default : ${{ github.ref }}
14
- outputs :
15
- artifact-id :
16
- description : ' Artifact ID of the uploaded artifact. Can be used to download the artifact in other workflows.'
17
- value : ${{ jobs.build.outputs.artifact-id }}
18
14
19
15
jobs :
20
16
build :
21
- outputs :
22
- artifact-id : ${{ steps.upload-artifact.outputs.artifact-id }}
23
- zip-file : ${{ steps.create-zip.outputs.zip-file }}
24
17
runs-on : ubuntu-latest
25
18
env :
26
19
BINARY_PATH : .artifacts/docs-lambda-index-publisher/release_linux-x64/bootstrap
Original file line number Diff line number Diff line change @@ -90,10 +90,11 @@ jobs:
90
90
ZIP_FILE : link-index-updater-lambda.zip
91
91
steps :
92
92
93
- - uses : actions/download-artifact@v4
93
+ - name : Download bootstrap binary
94
+ uses : actions/download-artifact@v4
94
95
with :
95
- artifact-ids : ${{ needs. build-lambda.outputs.artifact-id }}
96
-
96
+ name : link-index-updater-lambda-binary # Defined in build-link-index-updater- lambda.yml
97
+
97
98
- name : Create zip
98
99
run : |
99
100
zip -j "${ZIP_FILE}" ./bootstrap
You can’t perform that action at this time.
0 commit comments