diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 45251a2fa..406d3f725 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -55,6 +55,6 @@ jobs: DOCKER_PASSWORD: ${{ secrets.DOCKERHUB_KEY }} - name: Publish downloads - run: - cd cmd/release && docker build --build-arg GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }} -t thorax/download:latest . - docker push thorax/download:latest \ No newline at end of file + run: | + cd cmd/release + docker buildx build --push --platform linux/amd64 --build-arg GITHUB_TOKEN="${{ secrets.GITHUB_TOKEN }}" -t thorax/download:latest . \ No newline at end of file