Skip to content

Commit 0dddc13

Browse files
authored
Add Docker Build Action (#193)
* Adds docker build job * Fixes step description
1 parent ae41d3c commit 0dddc13

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/tests.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,18 @@ jobs:
4747
args: --timeout=5m
4848
- name: License Check
4949
run: make license-check
50+
51+
build:
52+
name: Docker Build
53+
runs-on: ubuntu-latest
54+
steps:
55+
- uses: actions/checkout@v3
56+
- name: Set up Docker Buildx
57+
uses: docker/setup-buildx-action@v1
58+
- name: Build
59+
uses: docker/build-push-action@v2
60+
with:
61+
context: .
62+
file: ./Dockerfile
63+
push: false
64+
tags: ${{ github.repository }}:latest

0 commit comments

Comments
 (0)