From 48e1ab1eceb34ca6c87bc75550d036cf68ece489 Mon Sep 17 00:00:00 2001 From: Sergio Gasquez Date: Mon, 26 Sep 2022 09:13:43 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20Update=20artifact=20name?= =?UTF-8?q?=20to=20avoid=20duplications?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b8ae667..85eba31 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -19,10 +19,13 @@ jobs: matrix: job: - os: macos-latest + os-name: macos binary-postfix: "" - os: ubuntu-latest + os-name: linux binary-postfix: "" - os: windows-latest + os-name: windows binary-postfix: ".exe" steps: - name: Install dependencies @@ -70,5 +73,5 @@ jobs: - name: Archive artifact uses: actions/upload-artifact@v3 with: - name: espup${{ matrix.job.binary-postfix }} + name: espup-${{ matrix.job.os-name }}${{ matrix.job.binary-postfix }} path: target/release/espup${{ matrix.job.binary-postfix }}