We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58cd1eb commit db2d686Copy full SHA for db2d686
.github/workflows/build-docker-image.yml
@@ -26,12 +26,9 @@ jobs:
26
GO111MODULE: on
27
run: |
28
docker login -u $DOCKER_USER -p $DOCKER_PASSWORD
29
- - name: Build the Docker image
30
- run: docker buildx build \
31
- --platform=linux/arm64,linux/amd64 \
32
- --tag ${{ secrets.DOCKER_USER }}/http-proxy:$GITHUB_REF_NAME \
33
- --file Dockerfile \
+ - name: Build and Push the Docker image
+ run: docker buildx build
+ --platform=linux/arm64,linux/amd64
+ --tag ${{ secrets.DOCKER_USER }}/http-proxy:$GITHUB_REF_NAME
+ --file Dockerfile
34
--push .
35
-
36
- - name: Docker Push
37
- run: docker push ${{ secrets.DOCKER_USER }}/http-proxy:$GITHUB_REF_NAME
0 commit comments