Skip to content

Commit 000b3bf

Browse files
committed
Fix lambda release
1 parent c34a7b9 commit 000b3bf

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

.github/workflows/build-link-index-updater-lambda.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ on:
1111
required: false
1212
type: string
1313
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 }}
1814

1915
jobs:
2016
build:

.github/workflows/release.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,11 @@ jobs:
9090
ZIP_FILE: link-index-updater-lambda.zip
9191
steps:
9292

93-
- uses: actions/download-artifact@v4
93+
- name: Download bootstrap binary
94+
uses: actions/download-artifact@v4
9495
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+
9798
- name: Create zip
9899
run: |
99100
zip -j "${ZIP_FILE}" ./bootstrap

0 commit comments

Comments
 (0)