From a80e3d807a1405d3edecf89256f9aa4b26bc1843 Mon Sep 17 00:00:00 2001 From: Mahdi Hosseini Date: Thu, 12 Dec 2024 18:41:28 +0330 Subject: [PATCH] Update publish-release.yml --- .github/workflows/publish-release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index ed01aa1..d3109c3 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -47,6 +47,7 @@ jobs: if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' outputs: # For accessing them from 'release' job IS_PRE_RELEASE: ${{ env.IS_PRE_RELEASE }} + APP_VERSION strategy: matrix: platform: [x64] # Change platform if you want to build only a specific platform @@ -152,7 +153,7 @@ jobs: runs-on: ubuntu-latest env: # Read some variables from the 'build' job - APP_VERSION: ${{ steps.get-version.outputs.VERSION }} + APP_VERSION: ${{ needs.build.outputs.APP_VERSION }} IS_PRE_RELEASE: ${{ needs.build.outputs.IS_PRE_RELEASE }} steps: - uses: actions/checkout@v4