We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99a7e91 commit 1a42ca4Copy full SHA for 1a42ca4
.github/actions/cargo-build-macos-binary/action.yml
@@ -35,6 +35,11 @@ runs:
35
run: rustup target add aarch64-apple-darwin
36
shell: bash
37
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
43
- name: Retrieve and export commit date, hash, and tags
44
run: |
45
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