diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a9f0569..0027347 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,17 +9,29 @@ jobs: steps: - name: Check out the repo uses: actions/checkout@v2 - - name: Push tag - uses: docker/build-push-action@v1 + - name: Docker meta + id: meta + uses: docker/metadata-action@v3 + with: + images: | + adven27/grpc-wiremock + tags: | + type=semver,pattern={{version}} + type=semver,pattern={{major}}.{{minor}} + - name: Set up QEMU + uses: docker/setup-qemu-action@v1 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v1 + - name: Login to DockerHub + uses: docker/login-action@v1 with: - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} - repository: adven27/grpc-wiremock - tag_with_ref: true - - name: Push latest - uses: docker/build-push-action@v1 + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - name: Push tag + uses: docker/build-push-action@v2 with: - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} - repository: adven27/grpc-wiremock - tags: latest \ No newline at end of file + context: . + platforms: linux/amd64,linux/arm64 + push: ${{ github.event_name != 'release' }} + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }}