Skip to content

Commit 3a60a07

Browse files
authored
Fix lambda release (#1218)
1 parent 5bae611 commit 3a60a07

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed

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

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,9 @@ 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:
21-
outputs:
22-
artifact-id: ${{ steps.upload-artifact.outputs.artifact-id }}
23-
zip-file: ${{ steps.create-zip.outputs.zip-file }}
2417
runs-on: ubuntu-latest
2518
env:
2619
BINARY_PATH: .artifacts/docs-lambda-index-publisher/release_linux-x64/bootstrap

.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)