Skip to content

Commit 1610a49

Browse files
authored
Merge pull request #1200 from openziti/fix-downloads-path-unzip
unzip from the flattened paths created by download-artifact@v5
2 parents ae0c7e4 + 4f5fe81 commit 1610a49

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
set -x
4343
ls -horRAS ./downloads
4444
mkdir -p ./build/amd64/linux/
45-
unzip -d ./build/amd64/linux/ ./downloads/linux-x64/ziti-edge-tunnel-Linux_x86_64.zip
45+
unzip -d ./build/amd64/linux/ ./downloads/ziti-edge-tunnel-Linux_x86_64.zip
4646
4747
- name: Run the Compose Test Script
4848
shell: bash

.github/workflows/publish-container-images.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ jobs:
4343
set -x
4444
ls -horRAS ./downloads
4545
mkdir -p ./build/{arm64,amd64}/linux/
46-
unzip -d ./build/arm64/linux/ ./downloads/linux-arm64/ziti-edge-tunnel-Linux_arm64.zip
47-
unzip -d ./build/amd64/linux/ ./downloads/linux-x64/ziti-edge-tunnel-Linux_x86_64.zip
46+
unzip -d ./build/arm64/linux/ ./downloads/ziti-edge-tunnel-Linux_arm64.zip
47+
unzip -d ./build/amd64/linux/ ./downloads/ziti-edge-tunnel-Linux_x86_64.zip
4848
4949
- name: Set up QEMU
5050
uses: docker/setup-qemu-action@v3

0 commit comments

Comments
 (0)