Skip to content

Create and publish a docker image for the solution #49

Create and publish a docker image for the solution

Create and publish a docker image for the solution #49

Workflow file for this run

name: Build
on:
push: { branches: [ master ] }
pull_request: { branches: [ master ] }
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-dotnet@v1
- name: Add Nuget Sources
run: dotnet nuget add source https://nuget.pkg.github.com/loanmarket/index.json -u license.admin@loanmarket.com.au -p ${{ secrets.LOAN_MARKET_TOKEN_READ_ONLY }} -n lmgithubnuget --store-password-in-clear-text
- name: Restore Samples
run: dotnet restore ./samples/MyCRM.Lodgement.Sample.sln
- name: Build Samples
run: dotnet build --configuration Release --no-restore ./samples/MyCRM.Lodgement.Sample.sln
- name: Test Samples
run: dotnet test --no-restore --verbosity normal ./samples/MyCRM.Lodgement.Sample.Tests/MyCRM.Lodgement.Sample.Tests.csproj
- name: Build Docker image
run: docker build . -f ./samples/MyCRM.Lodgement.Sample/Dockerfile -t lodgementsample:latest
- name: Save Docker image to file
run: docker save lodgementsample:latest -o lodgementsample-docker-image.tar
- name: Save Docker image as an artifact
uses: actions/upload-artifact@v3
with:
name: lodgementsample-docker-image
path: lodgementsample-docker-image.tar