Release arm64 on macOS #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release arm64 on macOS | |
on: | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
release: | |
name: Release arm64 on macOS | |
runs-on: macos-13-xlarge | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
fetch-depth: 0 | |
- name: Bazel on macOS | |
run: | | |
set -x -e | |
bash -e .github/workflows/build.bazel.sh python3 | |
- uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 | |
with: | |
name: ${{ runner.os }}-arm64-bazel-bin | |
path: | | |
build/tensorflow_io | |
build/tensorflow_io_gcs_filesystem | |
- run: | | |
set -x -e | |
echo "Successfully completely macOS arm64 release" | |