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 460c8a8
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
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: deploy/

0 comments on commit 460c8a8

Please sign in to comment.