adding container building to CI
This commit is contained in:
parent
2670d799aa
commit
7b2c2b2bad
19
.github/workflows/ci.yml
vendored
19
.github/workflows/ci.yml
vendored
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user