From e6830bbd0eaacb6608b8f2601710740ebf24f9bc Mon Sep 17 00:00:00 2001 From: Oleksii Holub <1935960+Tyrrrz@users.noreply.github.com> Date: Fri, 22 Apr 2022 02:10:00 +0300 Subject: [PATCH] Plural artifacts --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b11efaf9..9a78f9f3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -59,13 +59,13 @@ jobs: - name: Publish (GUI) run: dotnet publish DiscordChatExporter.Gui/ -o DiscordChatExporter.Gui/bin/Publish/ --configuration Release - - name: Upload artifact (CLI) + - name: Upload artifacts (CLI) uses: actions/upload-artifact@v3 with: name: DiscordChatExporter.CLI path: DiscordChatExporter.Cli/bin/Publish/ - - name: Upload artifact (GUI) + - name: Upload artifacts (GUI) uses: actions/upload-artifact@v3 with: name: DiscordChatExporter @@ -77,13 +77,13 @@ jobs: runs-on: ubuntu-latest steps: - - name: Download artifact (CLI) + - name: Download artifacts (CLI) uses: actions/download-artifact@v3 with: name: DiscordChatExporter.CLI path: DiscordChatExporter.CLI - - name: Download artifact (GUI) + - name: Download artifacts (GUI) uses: actions/download-artifact@v3 with: name: DiscordChatExporter