last one
This commit is contained in:
parent
951837f7e1
commit
d93bb679a2
@ -14,4 +14,20 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
dotnet-version: '6.0.x'
|
dotnet-version: '6.0.x'
|
||||||
- run: dotnet restore
|
- run: dotnet restore
|
||||||
- run: dotnet publish -o app -r ${{ matrix.rid }} --sc /p:PublishSingleFile=true
|
- run: dotnet build
|
||||||
|
- run: dotnet test
|
||||||
|
- run: dotnet publish -o app -r ${{ matrix.rid }} --sc /p:PublishSingleFile=true,AssemblyName=lastApp
|
||||||
|
- run: tar cf lastApp.tar lastApp/
|
||||||
|
- uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: lastApp.tar
|
||||||
|
path: lastApp.tar
|
||||||
|
|
||||||
|
test:
|
||||||
|
steps:
|
||||||
|
- uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: lastApp.tar
|
||||||
|
- run: tar xf lastApp.tar/lastApp.tar
|
||||||
|
- run: ./lastApp/lastApp
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user