Skip to content

Commit

Permalink
fix: install paths
Browse files Browse the repository at this point in the history
  • Loading branch information
merklefruit committed Nov 27, 2024
1 parent 91166a6 commit 8a10050
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/bolt_cli_release_bins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@ jobs:
- name: Install Protoc
uses: arduino/setup-protoc@v3

# - name: Apple M1 setup
# if: matrix.target == 'aarch64-apple-darwin'
# run: |
# echo "SDKROOT=$(xcrun -sdk macosx --show-sdk-path)" >> $GITHUB_ENV
# echo "MACOSX_DEPLOYMENT_TARGET=$(xcrun -sdk macosx --show-sdk-platform-version)" >> $GITHUB_ENV
- name: Apple M1 setup
if: matrix.target == 'aarch64-apple-darwin'
run: |
echo "SDKROOT=$(xcrun -sdk macosx --show-sdk-path)" >> $GITHUB_ENV
echo "MACOSX_DEPLOYMENT_TARGET=$(xcrun -sdk macosx --show-sdk-platform-version)" >> $GITHUB_ENV
# - name: Linux ARM setup
# if: matrix.target == 'aarch64-unknown-linux-gnu'
Expand All @@ -81,7 +81,7 @@ jobs:
env:
PLATFORM_NAME: ${{ matrix.platform }}
TARGET: ${{ matrix.target }}
OUT_DIR: target/${{ matrix.target }}/${{ env.PROFILE }}
OUT_DIR: bolt-cli/target/${{ matrix.target }}/${{ env.PROFILE }}
shell: bash
run: |
set -eo pipefail
Expand All @@ -106,7 +106,7 @@ jobs:
id: artifacts
env:
PLATFORM_NAME: ${{ matrix.platform }}
OUT_DIR: target/${{ matrix.target }}/${{ env.PROFILE }}
OUT_DIR: bolt-cli/target/${{ matrix.target }}/${{ env.PROFILE }}
ARCH: ${{ matrix.arch }}
shell: bash
run: |
Expand All @@ -122,7 +122,7 @@ jobs:
else
cd $OUT_DIR
7z a -tzip "bolt-cli-${ARCH}-${PLATFORM}.zip" bolt.exe
mv "bolt-cli-${ARCH}-${PLATFORM}.zip" ../../../
mv "bolt-cli-${ARCH}-${PLATFORM}.zip" ../../../../
echo "file_name=bolt-cli-${ARCH}-${PLATFORM}.zip" >> $GITHUB_OUTPUT
fi
Expand Down

0 comments on commit 8a10050

Please sign in to comment.