Skip to content

Commit

Permalink
fix: release was using wrong target/path
Browse files Browse the repository at this point in the history
  • Loading branch information
zaucy committed Oct 6, 2023
1 parent 3d33205 commit 8196a98
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
~/.cache/bazel-disk-cache
key: ${{runner.os}}-bazel-cache
- uses: actions/checkout@v4
- run: 'bazel build --config=ci //:ecsact'
- run: 'cp ./bazel-bin/ecsact ecsact_${{ github.ref_name }}_linux_x64'
- run: 'bazel build --config=ci //:ecsact_cli'
- run: 'cp ./bazel-bin/ecsact/cli/ecsact ecsact_${{ github.ref_name }}_linux_x64'
- run: 'gh release upload ${{ github.ref_name }} ecsact_${{ github.ref_name }}_linux_x64'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -33,8 +33,8 @@ jobs:
/Users/runneradmin/.cache/bazel-disk-cache
key: ${{runner.os}}-bazel-cache
- uses: actions/checkout@v4
- run: 'bazel build --config=ci //:ecsact'
- run: 'Copy-Item .\bazel-bin\ecsact.exe -Destination .\ecsact_${{ github.ref_name }}_windows_x64.exe'
- run: 'bazel build --config=ci //:ecsact_cli'
- run: 'Copy-Item .\bazel-bin\ecsact\cli\ecsact.exe -Destination .\ecsact_${{ github.ref_name }}_windows_x64.exe'
- run: 'gh release upload ${{ github.ref_name }} ./ecsact_${{ github.ref_name }}_windows_x64.exe'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 8196a98

Please sign in to comment.