From 37e67c1365f905dbf0883b0e3473639afa91868d Mon Sep 17 00:00:00 2001 From: mammo0 Date: Wed, 19 Feb 2020 13:37:39 +0100 Subject: [PATCH] expand env variables in GH actions right --- .github/workflows/release_workflow.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release_workflow.yml b/.github/workflows/release_workflow.yml index b966b4c..1c3bccf 100644 --- a/.github/workflows/release_workflow.yml +++ b/.github/workflows/release_workflow.yml @@ -40,6 +40,6 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: ./$RELEASE_ZIP - asset_name: $RELEASE_ZIP + asset_path: ./${{ env.RELEASE_ZIP }} + asset_name: ${{ env.RELEASE_ZIP }} asset_content_type: application/zip