From 1ea0dc030309e215647e82a4071ca7c12f51a05d Mon Sep 17 00:00:00 2001 From: fscarmen <62703343+fscarmen@users.noreply.github.com> Date: Wed, 16 Mar 2022 17:55:48 +0800 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6f79a73..37b60ba 100644 --- a/.github/workflows/build.yml +++ b/.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