Skip to content

Commit

Permalink
fixed wrong env var in windows action
Browse files Browse the repository at this point in the history
  • Loading branch information
BlurryRoots committed Sep 22, 2023
1 parent 560c9d1 commit ea2989c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/windows_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ env:
QT_VERSION: 5.15.2
QT_ARCH: win64_msvc2019_64
CMAKE_VERSION: '3.16.x'
ARTIFACT: Eddy
PROJECT: Eddy
BUILD_TYPE: Debug
SHARED_LIBS: OFF
MODULE_LIBS: OFF
Expand Down Expand Up @@ -80,12 +80,12 @@ jobs:
with:
type: 'zip'
directory: ${{ env.SOURCE_DIR }}
filename: Release\Candidate\${{ env.ARTIFACT }}_Win_${{ env.BUILD_TYPE }}.zip
filename: Release\Candidate\${{ env.PROJECT }}_Win_${{ env.BUILD_TYPE }}.zip
path: Release
exclusions: '*.git* /*node_modules/* .editorconfig /*Candidate/*'

- name: Uploading release candidate
uses: actions/upload-artifact@master
with:
name: ${{ env.ARTIFACT }}_Win_${{ env.BUILD_TYPE }}.zip
path: ${{ env.SOURCE_DIR }}\Release\Candidate\${{ env.ARTIFACT }}_Win_${{ env.BUILD_TYPE }}.zip
name: ${{ env.PROJECT }}_Win_${{ env.BUILD_TYPE }}.zip
path: ${{ env.SOURCE_DIR }}\Release\Candidate\${{ env.PROJECT }}_${{ env.BUILD_TYPE }}_Win.zip

0 comments on commit ea2989c

Please sign in to comment.