mirror of https://github.com/hashicorp/consul
ci: build-artifacts - fix platform missing in manifest error (#16940)
* ci: build-artifacts - fix platform missing in manifest error * remove platform keypull/16933/head
parent
be4a436a42
commit
2f524ae472
|
@ -67,6 +67,8 @@ jobs:
|
||||||
with:
|
with:
|
||||||
go-version-file: 'go.mod'
|
go-version-file: 'go.mod'
|
||||||
|
|
||||||
|
- run: go env
|
||||||
|
|
||||||
- name: Build dev binary
|
- name: Build dev binary
|
||||||
run: make dev
|
run: make dev
|
||||||
|
|
||||||
|
@ -92,6 +94,12 @@ jobs:
|
||||||
file: ./build-support/docker/Consul-Dev.dockerfile
|
file: ./build-support/docker/Consul-Dev.dockerfile
|
||||||
labels: COMMIT_SHA=${{ github.sha }},GITHUB_BUILD_URL=${{ env.GITHUB_BUILD_URL }}
|
labels: COMMIT_SHA=${{ github.sha }},GITHUB_BUILD_URL=${{ env.GITHUB_BUILD_URL }}
|
||||||
push: true
|
push: true
|
||||||
|
# This is required or else the image is not pullable.
|
||||||
|
# See https://github.com/docker/build-push-action/issues/820 for further
|
||||||
|
# details.
|
||||||
|
# TODO - investigate further and see if we can find a solution where we
|
||||||
|
# we don't have to know to set this.
|
||||||
|
provenance: false
|
||||||
tags: |
|
tags: |
|
||||||
hashicorpdev/${{ github.event.repository.name }}:${{ env.SHORT_SHA }}
|
hashicorpdev/${{ github.event.repository.name }}:${{ env.SHORT_SHA }}
|
||||||
hashicorpdev/${{ github.event.repository.name }}:latest
|
hashicorpdev/${{ github.event.repository.name }}:latest
|
||||||
|
|
Loading…
Reference in New Issue