From 9dda9cfc27e65adf315704f180c9dcc250c595dd Mon Sep 17 00:00:00 2001 From: Tyrrrz Date: Mon, 14 Dec 2020 17:37:49 +0200 Subject: [PATCH] Use floating dotnet versions on CI/CD --- .github/workflows/CD.yml | 2 +- .github/workflows/CI.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CD.yml b/.github/workflows/CD.yml index f63f995..ee91c7c 100644 --- a/.github/workflows/CD.yml +++ b/.github/workflows/CD.yml @@ -16,7 +16,7 @@ jobs: - name: Install .NET uses: actions/setup-dotnet@v1.7.2 with: - dotnet-version: 3.1.100 + dotnet-version: 3.1.x - name: Build & publish (CLI) run: dotnet publish DiscordChatExporter.Cli/ -o DiscordChatExporter.Cli/bin/Publish/ --configuration Release diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index cf103df..7ecd6f5 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -13,7 +13,7 @@ jobs: - name: Install .NET uses: actions/setup-dotnet@v1.7.2 with: - dotnet-version: 3.1.100 + dotnet-version: 3.1.x - name: Build & publish (CLI) run: dotnet publish DiscordChatExporter.Cli/ -o DiscordChatExporter.Cli/bin/Publish/ --configuration Release