diff options
| author | Yong He <yonghe@outlook.com> | 2022-09-28 13:42:40 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-28 13:42:40 -0700 |
| commit | eb5c6b93543ca1423117045dbbfee0b6f653d392 (patch) | |
| tree | bef912602dc22b2ac624eb5630450d8303e43e0f /.github/workflows/release-linux.yml | |
| parent | 7708d205cb186f2b95d8daa2d8e0c655488fc34a (diff) | |
Make github CI build aarch64 binaries on release. (#2417)
Diffstat (limited to '.github/workflows/release-linux.yml')
| -rw-r--r-- | .github/workflows/release-linux.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/release-linux.yml b/.github/workflows/release-linux.yml index c3d075d01..f0e00d77f 100644 --- a/.github/workflows/release-linux.yml +++ b/.github/workflows/release-linux.yml @@ -15,6 +15,7 @@ jobs: configuration: ['release'] compiler: ['gcc'] platform: ['x64'] + targetPlatform: ['x64'] steps: - name: Checkout code uses: actions/checkout@v2 @@ -28,6 +29,7 @@ jobs: export CC=${{matrix.compiler}} export CONFIGURATION=${{matrix.configuration}} export ARCH=${{matrix.platform}} + export TARGETARCH=${{matrix.targetPlatform}} echo "building..." source ./github_build.sh echo "creating binary archieves..." |
