Skip to content

Commit 5ea52c6

Browse files
committed
updated
1 parent 6cba2c1 commit 5ea52c6

1 file changed

Lines changed: 14 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,7 @@ jobs:
2727
echo "something" > dist/sentry-lambda-layer/python/bla.txt
2828
echo "not enought stuff?" > dist/sentry-lambda-layer/main.txt
2929
30-
# make dist
31-
# make lambda-layer-dir (new)
32-
# make add-extension-binaries (new)
33-
# make lambda-distribution-zip (new)
34-
35-
- uses: actions/upload-artifact@v2
30+
- uses: actions/upload-artifact@v3
3631
with:
3732
name: prepared-lambda-layer-${{ github.sha }}
3833
path: |
@@ -41,3 +36,16 @@ jobs:
4136
- uses: getsentry/action-build-aws-lambda-extension@v1
4237
with:
4338
artifact_name: prepared-lambda-layer-${{ github.sha }}
39+
zip_file_name: aws-lambda-layer.zip
40+
41+
- name: Download zip
42+
uses: actions/download-artifact@v3
43+
with:
44+
name: prepared-lambda-layer-${{ github.sha }}
45+
path: aws-lambda-layer.zip
46+
47+
- name: Upload Zip
48+
uses: actions/upload-artifact@v3
49+
with:
50+
name: ${{ github.sha }}
51+
path: aws-lambda-layer.zip

0 commit comments

Comments
 (0)