Skip to content

Commit

Permalink
ci: Build container image
Browse files Browse the repository at this point in the history
Build the container image using GitHub actions, to avoid deployment
failures later on.
  • Loading branch information
apyrgio committed May 13, 2024
1 parent 4003e14 commit 873ec1f
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Tests
on:
push:
pull_request:
branches: [ main ]
schedule:
- cron: '0 0 * * *' # Run every day at 00:00 UTC.


jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: docker/build-push-action@v5
with:
context: .
file: deploy/Dockerfile

0 comments on commit 873ec1f

Please sign in to comment.