Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aahel committed Feb 15, 2024
1 parent d6029e1 commit c259c5b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/bin-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- { goos: "linux", goarch: "arm64", runs-on: "ubuntu-latest" }

needs:
- get-go-version
- get-go-versiont
defaults:
run:
working-directory: ./consul-lambda/consul-lambda-registrator
Expand All @@ -66,6 +66,11 @@ jobs:
with:
go-version: ${{ needs.get-go-version.outputs.go-version }}
cache-dependency-path: ./consul-lambda/go.sum
- name: Install emulation
if: matrix.platform.goarch != 'amd64'
uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v3.0.0
with:
platforms: ${{matrix.platform.goarch}}
- name: Install Consul
shell: bash
run: |
Expand All @@ -77,11 +82,6 @@ jobs:
rm "${FILENAME}"
consul version
- name: Install emulation
if: matrix.platform.goarch != 'amd64'
uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v3.0.0
with:
platforms: ${{matrix.platform.goarch}}
- name: Build
run: go build -v ./...
Expand Down

0 comments on commit c259c5b

Please sign in to comment.