From b555f490eac95d44e93c1fc6d33de76900bee0d9 Mon Sep 17 00:00:00 2001 From: Michael Schilling Date: Mon, 17 Feb 2020 21:40:31 +0100 Subject: [PATCH] Modify output zip file name --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0dddaf7c..b8b94e13 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,7 +28,7 @@ jobs: - name: Build project zip run: | - zip -r dist ./dist/* + zip -r output ./dist/* - name: Bump version and push tag id: tag_release @@ -56,6 +56,6 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: ./dist.zip - asset_name: dist.zip + asset_path: ./output.zip + asset_name: output.zip asset_content_type: application/zip