Merge pull request #3 from QueraTeam/dependabot/docker/client/alpine-… #38
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Push Docker Images | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Log in to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push the server image | |
uses: docker/build-push-action@v6 | |
with: | |
context: server | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: ghcr.io/querateam/docker-ssh/server:latest | |
- name: Build and push the client image | |
uses: docker/build-push-action@v6 | |
with: | |
context: client | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: ghcr.io/querateam/docker-ssh/client:latest |