Skip to content

Commit

Permalink
Update publish-release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ghost1372 authored Dec 12, 2024
1 parent ae616d6 commit a80e3d8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit a80e3d8

Please sign in to comment.