From 7b2c2b2bad44dfd8aff4656deb5cf657b1db4a3a Mon Sep 17 00:00:00 2001 From: andy Date: Sun, 13 Feb 2022 12:14:35 +0000 Subject: [PATCH] adding container building to CI --- .github/workflows/ci.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index efd3645..1169537 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,6 +24,25 @@ jobs: - name: Test run: dotnet test --no-restore --verbosity normal + build-Docker: + + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + dotnet-version: [ '6.0.x' ] + + steps: + - uses: actions/checkout@v2 + - name: Build CLI Container + uses: docker/build-push-action@v2 + with: + file: {context}/Dockerfile.CLI + - name: Build Web Container + uses: docker/build-push-action@v2 + with: + file: {context}/Dockerfile.Web + build-Js: runs-on: ubuntu-latest