We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9754c23 commit c8ee8deCopy full SHA for c8ee8de
.github/workflows/build-migration-dev.yml
@@ -93,6 +93,24 @@ jobs:
93
GPG_PASSPHRASE: ${{secrets.GPG_PASSPHRASE}}
94
CI_DEPLOY_USERNAME: ${{secrets.CI_DEPLOY_USERNAME}}
95
CI_DEPLOY_PASSWORD: ${{secrets.CI_DEPLOY_PASSWORD}}
96
+
97
+ build:
98
+ name: CSharp8 build
99
+ shell: bash
100
+ runs-on: ubuntu-latest
101
+ working-directory: ./rosetta-source/target/classes/cdm/csharp8/NetStandard.2.1
102
+ with: dotnet-version '2.1'
103
+ strategy:
104
+ fail-fast: false
105
+ image: mcr.microsoft.com/dotnet/core/sdk:3.1
106
+ steps:
107
+ - name: build
108
+ run: dotnet build Cdm/Cdm.csproj
109
+ - name: test
110
+ run: dotnet test Test/Test.csproj
111
+ - name: publish
112
+ run: dotnet publish Cdm/Cdm.csproj -c release -o ./app
113
114
115
distribute:
116
needs: build
0 commit comments