We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 881803c commit 1da0616Copy full SHA for 1da0616
1 file changed
.github/workflows/release.yml
@@ -30,10 +30,12 @@ jobs:
30
run: cd Engines && dotnet publish
31
32
- name: Check directory
33
- run: cd Engines/bin/Release/netcoreapp2.2/publish/ && ls -l
+ run: |
34
+ cd Engines/bin/Release/netstandard2.0/publish/ && ls -l
35
+ cd Engines/bin/Debug/netstandard2.0/publish/ && ls -l
36
37
- name: Upload Artifact
38
uses: actions/upload-artifact@v2
39
with:
40
name: FactSet.AnalyticsAPI.Engines
- path: Engines/bin/Release/netcoreapp2.2/publish/
41
+ path: Engines/bin/Release/netstandard2.0/publish/
0 commit comments