ci: Set up Docker build in dev workflow

This commit is contained in:
Elian Doran 2024-07-13 18:50:34 +03:00
parent 45f2691053
commit 19550eec6a
No known key found for this signature in database

15
.github/workflows/dev.yml vendored Normal file
View File

@ -0,0 +1,15 @@
name: Dev
on:
push:
jobs:
build_docker:
name: Build Docker image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v1
- uses: docker/build-push-action@v2
with:
context: .
cache-from: type=gha
cache-to: type=gha,mode=max