Update build.yml

dependabot/github_actions/actions/checkout-3.1.0
fscarmen 4 years ago committed by GitHub
parent afb82d6aba
commit 1ea0dc0303
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      .github/workflows/build.yml

@ -24,14 +24,14 @@ jobs:
- name: Login to DockerHub
uses: docker/login-action@v1.14.1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
username: ${{ env.DOCKER_USERNAME }}
password: ${{ env.DOCKER_PASSWORD }}
- name: Build and push images to Docker hub
uses: docker/build-push-action@v2.9.0
with:
push: true
platforms: linux/amd64,linux/arm64,linux/s390x
platforms: linux/amd64,linux/arm64
tags: ${{ env.DOCKERHUB_REPOSITORY }}
- name: Test container

Loading…
Cancel
Save