Skip to content
This repository has been archived by the owner on Sep 14, 2024. It is now read-only.

Commit

Permalink
Fix misnamed executable output name in GitHub Actions release job
Browse files Browse the repository at this point in the history
  • Loading branch information
LPGhatguy committed Mar 4, 2020
1 parent 96fc145 commit 26692e6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
uses: actions/upload-artifact@v1
with:
name: testez-cli-win64
path: target/release/testez-cli.exe
path: target/release/testez.exe

macos:
runs-on: macos-latest
Expand All @@ -52,7 +52,7 @@ jobs:
uses: actions/upload-artifact@v1
with:
name: testez-cli-macos
path: target/release/testez-cli
path: target/release/testez

linux:
runs-on: ubuntu-latest
Expand All @@ -74,4 +74,4 @@ jobs:
uses: actions/upload-artifact@v1
with:
name: testez-cli-linux
path: target/release/testez-cli
path: target/release/testez

0 comments on commit 26692e6

Please sign in to comment.