Skip to content

Commit

Permalink
.github: Add build image step
Browse files Browse the repository at this point in the history
  • Loading branch information
mrueg committed Feb 21, 2023
1 parent ca2dbe5 commit 2a9f830
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- master

env:
GO_VERSION: "~1.19.4"
GO_VERSION: "~1.19.6"

jobs:
# Runs Golangci-lint on the source code
Expand Down Expand Up @@ -64,3 +64,20 @@ jobs:
- name: Build mark
run: |
make build
# Build Dockerimage
ci-docker-build:
name: ci-docker-build
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v2

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Build and push
uses: docker/build-push-action@v4
with:
push: false
tags: kovetskiy/mark:latest

0 comments on commit 2a9f830

Please sign in to comment.