From 8176eefc0a849575fd212ab666111ad8669fc55a Mon Sep 17 00:00:00 2001 From: Connor Davis <17688291+PoisonPhang@users.noreply.github.com> Date: Wed, 13 Dec 2023 14:17:12 -0600 Subject: [PATCH] fix(ci): rename `uniond` bin in release workflow (#1040) * fix(ci): rename uniond output bin * chore(ci): remove debug --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0f56464436..c4a14bffd3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -71,7 +71,7 @@ jobs: if [[ ${{ matrix.package }} =~ uniond-release ]] then - mv ${{ matrix.system }}.${{ matrix.package }}/bin/uniond ${{ matrix.package }}-${{ matrix.system }} + mv ${{ matrix.system }}.${{ matrix.package }}/bin/uniond uniond-${{ matrix.system }} else mv ${{ matrix.system }}.${{ matrix.package }}/bin/${{ matrix.package }} ${{ matrix.package }}-${{ matrix.system }} fi