We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ad36f1 commit c83fe10Copy full SHA for c83fe10
.github/workflows/cicd.yml
@@ -0,0 +1,18 @@
1
+name: AWS-Lambda-Layer-OSMTools CI-CD
2
+on:
3
+ push:
4
+ branches: ["*"]
5
+ pull_request:
6
7
+jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v5
12
+ - name: Build Libraries
13
+ run: bash ./build-libraries.sh
14
+ - uses: actions/upload-artifact@v4
15
+ with:
16
+ name: aws-lambda-layer-osmtools.zip
17
+ path: aws-lambda-layer-osmtools.zip
18
+ if-no-files-found: error
0 commit comments