Skip to content

Commit

Permalink
add container build action
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Sjögren <[email protected]>
  • Loading branch information
konstruktoid committed Feb 17, 2023
1 parent 0fb23f8 commit 0240fed
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/containerbuild.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Container build

on:
push:
pull_request:
schedule:
- cron: "0 5 * * */2"

permissions:
contents: read

jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Set up QEMU
uses: docker/setup-qemu-action@v2

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Build
uses: docker/build-push-action@v4
with:
context: .
push: false

0 comments on commit 0240fed

Please sign in to comment.