From 3f53c2754b0b1b00e952be15f77450f09e95c400 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Janne=20Kiiskil=C3=A4?= Date: Fri, 12 Jan 2024 15:22:02 +0200 Subject: [PATCH] GitHub action - Docker build simple-pt-example as well --- .github/workflows/make.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/make.yml b/.github/workflows/make.yml index e186237..d52ee9c 100644 --- a/.github/workflows/make.yml +++ b/.github/workflows/make.yml @@ -159,9 +159,12 @@ jobs: uses: actions/checkout@v4 - name: git submodule update run: git submodule update --init --recursive - - name: Docker build + - name: Docker build pt-example run: docker build -t pt-example:latest -f ./Dockerfile.pt-example . # Don't run it - it will run forever essentially. + - name: Docker build pt-example + run: docker build -t simple-example:latest -f ./Dockerfile.simple-pt-example . + # Don't run it - it will run forever essentially. - name: Docker system prune if: always() run: docker system prune -f