From 8172ce061e00b49cccf2c00d988014ab12c986b0 Mon Sep 17 00:00:00 2001 From: AsiaK21 Date: Tue, 21 Nov 2023 16:42:51 +0100 Subject: [PATCH] zadanie 5 samo --- .gitea/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 4d1cf2d..9c5a716 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -9,13 +9,13 @@ jobs: matrix: rid: ["win-x64", "linux-x64"] steps: - uses: actions/checkout@v4 - uses: actions/setup-dotnet@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-dotnet@v3 with: dotnet-version: '6.0.x' - run: dotnet restore - run: dotnet publish -o app -r ${{ matrix.rid }} --sc /p:PublishSingleFile=true - uses: actions/upload-artifact@v2 + - run: dotnet restore + - run: dotnet publish -o app -r ${{ matrix.rid }} --sc /p:PublishSingleFile=true + - uses: actions/upload-artifact@v2 with: name: ${{ matrix.rid }}-artifacts path: app