Skip to content

Commit

Permalink
Merge pull request #83 from DanceMore/feature-macos-arm64
Browse files Browse the repository at this point in the history
minor tweaks
  • Loading branch information
DanceMore authored Nov 17, 2024
2 parents 7a9eca3 + bb98f97 commit a66cb66
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
tag=$(git rev-parse --short=8 ${{ github.sha }})
echo "tag=${tag}" >> $GITHUB_ENV
- name: Build for macOS
- name: Build for macOS x86_64
run: |
rustup target add x86_64-apple-darwin
cargo build --package jukectl --release --target x86_64-apple-darwin
Expand All @@ -75,6 +75,7 @@ jobs:

- name: Create Release
uses: softprops/action-gh-release@v1
if: ${{ !cancelled() }}
with:
files: |
changelog.txt
Expand All @@ -100,9 +101,9 @@ jobs:
shell: powershell
run: |
$tag = git rev-parse --short=8 $env:GITHUB_SHA
Set-Content -Path $env:GITHUB_ENV -Value "tag=$tag"
Add-Content -Path $env:GITHUB_ENV -Value "tag=$tag"
- name: Build for Windows x86-64
- name: Build for Windows x86_64
run: |
cargo build --package jukectl --release --target x86_64-pc-windows-msvc
ls target/x86_64-pc-windows-msvc/release/
Expand All @@ -113,9 +114,9 @@ jobs:

- name: Create Release
uses: softprops/action-gh-release@v1
if: ${{ !cancelled() }}
with:
files: |
changelog.txt
jukectl-windows-x86_64.exe
body_path: changelog.txt
tag_name: ${{ env.tag }}
Expand Down

0 comments on commit a66cb66

Please sign in to comment.