Skip to content
This repository has been archived by the owner on Sep 22, 2022. It is now read-only.

update docker actions and add arm64 image #35

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 24 additions & 12 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
context: .
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'release' }}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hm should this be:

Suggested change
push: ${{ github.event_name != 'release' }}
push: ${{ github.event_name == 'release' }}

tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}