summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorcyqsimon <28627918+cyqsimon@users.noreply.github.com>2023-09-11 18:01:44 +0800
committercyqsimon <28627918+cyqsimon@users.noreply.github.com>2023-09-11 18:01:44 +0800
commit95635a62e05ea1acad878a561fc4e7b9e92972b3 (patch)
treeb09ab2074e514d8bf789a3f4dea97d559f8ba0d3 /.github
parenta9fbc6d4638f73bb45a8baba76d6001f022bbc32 (diff)
CD: set correct version for binaries, this time for real
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/release.yaml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml
index ae3e05d..c7bfee6 100644
--- a/.github/workflows/release.yaml
+++ b/.github/workflows/release.yaml
@@ -108,8 +108,8 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.create-release.outputs.upload_url }}
- asset_path: ./target/${{ matrix.target }}/release/bandwhich-v${{ steps.release-version.outputs.v }}-${{matrix.target}}.tar.gz
- asset_name: bandwhich-v${{ steps.release-version.outputs.v }}-${{matrix.target}}.tar.gz
+ asset_path: ./target/${{ matrix.target }}/release/bandwhich-${{ steps.release-version.outputs.v }}-${{matrix.target}}.tar.gz
+ asset_name: bandwhich-${{ steps.release-version.outputs.v }}-${{matrix.target}}.tar.gz
asset_content_type: application/octet-stream
- name: Upload Windows release archive
@@ -119,6 +119,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.create-release.outputs.upload_url }}
- asset_path: ./target/${{ matrix.target }}/release/bandwhich-v${{ steps.release-version.outputs.v }}-${{matrix.target}}.zip
- asset_name: bandwhich-v${{ steps.release-version.outputs.v }}-${{matrix.target}}.zip
+ asset_path: ./target/${{ matrix.target }}/release/bandwhich-${{ steps.release-version.outputs.v }}-${{matrix.target}}.zip
+ asset_name: bandwhich-${{ steps.release-version.outputs.v }}-${{matrix.target}}.zip
asset_content_type: application/octet-stream