Skip to content

Commit

Permalink
ci: Set up Docker build in dev workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
eliandoran committed Jul 13, 2024
1 parent 45f2691 commit 0df27f3
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 0df27f3

Please sign in to comment.