Task/#39 remove unused config #11
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build and Test Pull Requests | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| buildlinux: | |
| name: "Build Linux Docker" | |
| env: | |
| ASPNETCORE_ENVIRONMENT: "Production" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/[email protected] | |
| - name: Build Docker Images | |
| run: | | |
| docker build . --file Dockerfile --tag stuartferguson/txnprocbase:latest | |
| buildwindows: | |
| name: "Build Windows Docker" | |
| env: | |
| ASPNETCORE_ENVIRONMENT: "Production" | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/[email protected] | |
| - name: Get the version | |
| id: get_version | |
| uses: battila7/get-version-action@v2 | |
| - name: Build Docker Images | |
| run: | | |
| docker build . --file DockerfileWindows --tag stuartferguson/txnprocbasewindows:latest |