File tree Expand file tree Collapse file tree 4 files changed +14
-76
lines changed
Expand file tree Collapse file tree 4 files changed +14
-76
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1616 runs-on : windows-latest
1717
1818 env :
19- Solution_Name : ExplorandoMarte.sln # Nome da solução
20- Test_Project_Path : ExplorandoMarte.Tests/ExplorandoMarte.Tests.csproj # Caminho para o projeto de testes
21- Wap_Project_Directory : ExplorandoMarte # Defina o diretório do projeto WAP
22- Wap_Project_Path : ExplorandoMarte/ExplorandoMarte.csproj # Defina o caminho do projeto WAP
19+ Solution_Name : ExplorandoMarte.sln # Nome da solução
20+ Test_Project_Path : ExplorandoMarte.Tests/ExplorandoMarte.Tests.csproj # Caminho para o projeto de testes
21+ Publish_Directory : ExplorandoMarte/publish # Diretório de publicação
2322
2423 steps :
2524 - name : Checkout code
3837
3938 - name : Run tests
4039 run : dotnet test ${{ env.Test_Project_Path }} --configuration ${{ matrix.configuration }} --no-restore --verbosity normal
40+
41+ - name : Publish
42+ run : dotnet publish ${{ env.Solution_Name }} --configuration ${{ matrix.configuration }} --output ${{ env.Publish_Directory }}
43+
44+ - name : Upload build artifacts
45+ uses : actions/upload-artifact@v2
46+ with :
47+ name : Published EXE
48+ path : ${{ env.Publish_Directory }}
49+
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 88
99namespace ExplorandoMarte
1010{
11- public class Program //: Controller
11+ public class Program
1212 {
1313 public static void Main ( string [ ] args )
1414 {
You can’t perform that action at this time.
0 commit comments