File tree Expand file tree Collapse file tree 1 file changed +15
-7
lines changed
Expand file tree Collapse file tree 1 file changed +15
-7
lines changed Original file line number Diff line number Diff line change @@ -18,20 +18,28 @@ jobs:
1818 with :
1919 python-version : ' 3.x'
2020
21- - name : Install AWS SAM CLI
22- run : pip install aws-sam-cli
21+ # - name: Install AWS SAM CLI
22+ # run: pip install aws-sam-cli
2323
24- - name : Build with SAM
25- run : sam build --use-container
24+ # - name: Build with SAM
25+ # run: sam build --use-container
26+
27+ # - name: Zip the contents
28+ # id: zip
29+ # run: |
30+ # commit_hash=$(git rev-parse --short HEAD)
31+ # echo "commit_hash=${commit_hash}" >> $GITHUB_OUTPUT
32+ # zip_name="apache-iceberg-monitoring-${commit_hash}.zip"
33+ # cd .aws-sam/build/IcebergMetricsLambda
34+ # zip -r "../../../${zip_name}" .
35+ # echo "zip_name=${zip_name}" >> $GITHUB_OUTPUT
2636
2737 - name : Zip the contents
2838 id : zip
2939 run : |
30- commit_hash=$(git rev-parse --short HEAD)
31- echo "commit_hash=${commit_hash}" >> $GITHUB_OUTPUT
3240 zip_name="apache-iceberg-monitoring-${commit_hash}.zip"
3341 cd .aws-sam/build/IcebergMetricsLambda
34- zip -r "../../../${zip_name}" .
42+ touch "../../../${zip_name}"
3543 echo "zip_name=${zip_name}" >> $GITHUB_OUTPUT
3644
3745 - name : Generate changelog with commit links
You can’t perform that action at this time.
0 commit comments