Skip to content

Commit c871c7c

Browse files
committed
chore: mock worflow to expedite testing
1 parent ee4b291 commit c871c7c

File tree

1 file changed

+15
-7
lines changed

1 file changed

+15
-7
lines changed

.github/workflows/release.yml

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)