name: Build Docker Image on: push: branches: [ master ] jobs: push_to_registry: name: Push Docker image to Docker Hub runs-on: ubuntu-latest steps: - name: Check out the repo uses: actions/checkout@v2 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v1 - name: Login to DockerHub uses: docker/login-action@v1 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Set short hash run: echo "SHORT_HASH=`echo ${GITHUB_SHA} | cut -c1-8`" >> $GITHUB_ENV - name: Build and push id: docker_build uses: docker/build-push-action@v2 with: push: true tags: raphaelrobidas/calcus2:latest build-args: CALCUS_VERSION_HASH=${{env.SHORT_HASH}} target: "calcus_user"