Skip to content

Commit

Permalink
unzip with overwrite flag
Browse files Browse the repository at this point in the history
  • Loading branch information
absolutelightning committed Feb 14, 2024
1 parent caf72c4 commit 572091a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/bin-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
working-directory: ./consul-lambda/consul-lambda-registrator

test:
name: unit test (consul-version=${{ matrix.consul-version }})
name: unit test (consul-version=${{ matrix.consul-version }}) - platform=${{ matrix.platform.goos }}_${{ matrix.platform.goarch }}
strategy:
matrix:
consul-version:
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
PLATFORM="${{ matrix.platform.goos }}_${{ matrix.platform.goarch }}"
FILENAME="consul_${CONSUL_VERSION}_${PLATFORM}.zip"
curl -sSLO "https://releases.hashicorp.com/consul/${CONSUL_VERSION}/${FILENAME}" && \
unzip "${FILENAME}" -d /usr/local/bin && \
unzip -o "${FILENAME}" -d /usr/local/bin && \
rm "${FILENAME}"
consul version
- name: Build
Expand Down

0 comments on commit 572091a

Please sign in to comment.