From 420365125fb683b8e73801bac4404556805e464c Mon Sep 17 00:00:00 2001 From: Geoff McDonald Date: Fri, 21 Jan 2022 13:47:38 -0800 Subject: [PATCH] Update deploy.yml Try fix binary path. --- .github/workflows/deploy.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 652636f..bf6e6f8 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -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 @@ -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 @@ -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