Skip to content

Commit 967bb5a

Browse files
recurse add without subfolder to sdk release zips.
1 parent fcb044f commit 967bb5a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/stage-5-publish.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,10 @@ jobs:
7878
# run: zip jekyll-docs-${{ inputs.version }}.zip ./artifact.tar
7979
# shell: bash
8080

81-
- name: "tar gz sdk ts release asset"
81+
- name: "zip sdk ts release asset"
8282
# Git hub pages needs a single tar called artifact inside the zip.
8383
working-directory: ./artifacts
84-
run: zip sdk-ts-${{ inputs.version }}.zip ./sdk-ts-${{ inputs.version }}
84+
run: zip -r -j sdk-ts-${{ inputs.version }}.zip ./sdk-ts-${{ inputs.version }}
8585
shell: bash
8686

8787
- name: "Upload sdk ts release asset"
@@ -94,10 +94,10 @@ jobs:
9494
asset_name: sdk-ts-${{ inputs.version }}.zip
9595
asset_content_type: "application/gzip"
9696

97-
- name: "tar gz sdk python release asset"
97+
- name: "zip sdk python release asset"
9898
# Git hub pages needs a single tar called artifact inside the zip.
9999
working-directory: ./artifacts
100-
run: zip sdk-python-${{ inputs.version }}.zip ./sdk-python-${{ inputs.version }}
100+
run: zip -r -j sdk-python-${{ inputs.version }}.zip ./sdk-python-${{ inputs.version }}
101101
shell: bash
102102

103103
- name: "Upload sdk python release asset"

0 commit comments

Comments
 (0)