diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6de1458..5432598 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,15 +22,15 @@ jobs: - name: Login to DockerHub uses: docker/login-action@v1.14.1 with: - username: ${{ env.DOCKER_USERNAME }} - password: ${{ env.DOCKER_PASSWORD }} + username: ${DOCKER_USERNAME} + password: ${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 - tags: ${{ env.DOCKERHUB_REPOSITORY }} + tags: ${DOCKERHUB_REPOSITORY} - name: Test container run: |