Skip to content

Commit 1a42ca4

Browse files
committed
Attempt to fix macOS release packages workflow
1 parent 99a7e91 commit 1a42ca4

File tree

1 file changed

+5
-0
lines changed
  • .github/actions/cargo-build-macos-binary

1 file changed

+5
-0
lines changed

.github/actions/cargo-build-macos-binary/action.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,11 @@ runs:
3535
run: rustup target add aarch64-apple-darwin
3636
shell: bash
3737
working-directory: ./quickwit
38+
- name: Add target x86_64-apple-darwin
39+
if: "${{ inputs.target == 'x86_64-apple-darwin' }}"
40+
run: rustup target add x86_64-apple-darwin
41+
shell: bash
42+
working-directory: ./quickwit
3843
- name: Retrieve and export commit date, hash, and tags
3944
run: |
4045
echo "QW_COMMIT_DATE=$(TZ=UTC0 git log -1 --format=%cd --date=format-local:%Y-%m-%dT%H:%M:%SZ)" >> $GITHUB_ENV

0 commit comments

Comments
 (0)