From 3d35bd1715c4d9daf2c7a66b4b442bfc09ae2a0c Mon Sep 17 00:00:00 2001 From: Jukka Svahn Date: Sun, 13 Oct 2019 01:39:35 +0300 Subject: [PATCH] Try name and version variables --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2f16e13..828c3dc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,11 +18,11 @@ jobs: - name: Upload Compressed Plugin Installer Artifact uses: actions/upload-artifact@master with: - name: installer_zip.txt + name: ${{ steps.build.outputs.name }}_v${{ steps.build.outputs.version }}_zip.txt path: ${{ steps.build.outputs.compressed }} - name: Upload Uncompressed Plugin Installer Artifact uses: actions/upload-artifact@master with: - name: installer.txt + name: ${{ steps.build.outputs.name }}_v${{ steps.build.outputs.version }}.txt path: ${{ steps.build.outputs.uncompressed }}