From 7a096d5cb38f4eb2aa15022efd37a9f8b943c405 Mon Sep 17 00:00:00 2001 From: freddyrios Date: Mon, 27 Sep 2021 22:12:02 +0200 Subject: [PATCH] updating to approach support according to https://github.com/actions/setup-dotnet/issues/170 --- .github/workflows/main-build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main-build.yml b/.github/workflows/main-build.yml index 1fc19be4..4b76ab22 100644 --- a/.github/workflows/main-build.yml +++ b/.github/workflows/main-build.yml @@ -19,7 +19,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v1.8.2 with: - dotnet-version: 6.0.x + dotnet-version: 6.0 - name: Restore dependencies run: dotnet restore - name: Build @@ -46,7 +46,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v1.8.2 with: - dotnet-version: 6.0.x + dotnet-version: 6.0 - name: Generate DataUploader - linux-x64 run: dotnet publish CA_DataUploader -c Release -o out/linux-x64/uploader -r linux-x64 -p:PublishSingleFile=true - name: Generate DataUploader - linux-arm