Skip to content

Commit 123614b

Browse files
committed
Also re-use in PR
1 parent 0670fe9 commit 123614b

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010
ref:
1111
required: false
1212
type: string
13+
default: ${{ github.ref }}
1314
outputs:
1415
artifact-id:
1516
description: 'Artifact ID of the uploaded artifact. Can be used to download the artifact in other workflows.'
@@ -36,6 +37,10 @@ jobs:
3637
- name: Get bootstrap binary
3738
run: |
3839
docker cp $(docker create --name tc publish-links-index:latest):/app/.artifacts/publish ./.artifacts && docker rm tc
40+
- name: Validate bootstrap binary
41+
run: |
42+
tree .artifacts
43+
stat .artifacts/docs-lambda-index-publisher/release_linux-x64/bootstrap
3944
- name: Create zip file
4045
id: create-zip
4146
run: |

.github/workflows/pr.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
run: dotnet run --project src/tooling/docs-assembler -c release -- navigation validate
2828

2929
build-lambda:
30+
uses: ./.github/workflows/build-link-index-updater-lambda.yml
3031
runs-on: ubuntu-latest
3132
steps:
3233
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)