Skip to content

Commit

Permalink
Update deploy.yml
Browse files Browse the repository at this point in the history
Try fix binary path.
  • Loading branch information
glmcdona authored Jan 21, 2022
1 parent 80d480a commit 4203651
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
targetPlatform: [Win32, x64]

env:
BUILD_FILE_PATH: .{{ targetPlatform }}\Release\pd.exe
BUILD_FILE_PATH: .\${{ matrix.targetPlatform }}\Release\pd.exe

steps:
- uses: actions/checkout@v2
Expand All @@ -45,7 +45,7 @@ jobs:
- name: Upload build artifacts
uses: actions/upload-artifact@v2
with:
name: ${{ matrix.targetplatform }} Executable
name: ${{ matrix.targetPlatform }} Executable
path: ${{ env.BUILD_FILE_PATH }}

- name: Create Release
Expand All @@ -54,8 +54,8 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}.${{ matrix.targetplatform }}
tag_name: ${{ github.ref }}.${{ matrix.targetPlatform }}
release_name: Release ${{ github.ref }}.${{ matrix.targetPlatform }}
body: |
${{ steps.Changelog.outputs.changelog }}
draft: false
Expand Down

0 comments on commit 4203651

Please sign in to comment.