Slightly confusing typo in excel format output (#19) #107
This file contains 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: .NET | |
on: [push] | |
jobs: | |
build: | |
name: Build for platform ${{ matrix.platform }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
platform: [linux-x64, win-x64, osx-x64] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET 6 | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 6.0.100 | |
- name: Build with dotnet | |
run: dotnet build StatementParser/StatementParser.sln --configuration Release | |
- name: Publish with dotnet | |
run: dotnet publish -r ${{matrix.platform}} --configuration Release --self-contained true StatementParser/StatementParser.sln | |
- name: Publish StatementParserCLI artifacts to GitHub | |
uses: actions/upload-artifact@v1 | |
with: | |
name: StatementParserCLI_${{matrix.platform}} | |
path: StatementParser/StatementParserCLI/bin/Release/net6.0/${{matrix.platform}}/publish | |
- name: Publish TaxReporterCLI artifacts to GitHub | |
uses: actions/upload-artifact@v1 | |
with: | |
name: TaxReporterCLI_${{matrix.platform}} | |
path: StatementParser/TaxReporterCLI/bin/Release/net6.0/${{matrix.platform}}/publish |