From 9028c8628ad89b14be7d88c27eb6279957a3cbd6 Mon Sep 17 00:00:00 2001 From: Oliver Feldmann Date: Wed, 2 Aug 2023 15:37:15 +0200 Subject: [PATCH] Build on push to see that it works --- .github/workflows/build.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..111df13 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,10 @@ +on: push +name: Build image +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - name: Build + run: | + docker build . \ No newline at end of file