Przekazywanie Artefaktow Dobre 3
All checks were successful
First CI / build (win-x64) (push) Successful in 1m6s
First CI / build (linux-x64) (push) Successful in 1m22s
First CI / build (push) Successful in 2m44s
First CI / test (push) Successful in 14s

This commit is contained in:
2025-11-21 11:27:51 +01:00
parent 1697163436
commit 5c5980f9e9
2 changed files with 17 additions and 1 deletions

View File

@@ -23,5 +23,5 @@ jobs:
- uses: actions/download-artifact@v3 - uses: actions/download-artifact@v3
with: with:
name: app.tar name: app.tar
- run: tar xf app.tar/app - run: tar xf app.tar app/
- run: ./app/app - run: ./app/app

16
.gitea/workflows/ci2.yml Normal file
View File

@@ -0,0 +1,16 @@
name: First CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
rid: ["win-x64", "linux-x64"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- run: dotnet restore
- run: dotnet publish -o app -r ${{ matrix.rid }} --sc /p:PublishSingleFile=true