From d133c0673c051dc13d5c839659273174d063f6ad Mon Sep 17 00:00:00 2001 From: Meghan Jones Date: Mon, 24 May 2021 18:37:55 -0400 Subject: [PATCH] Include arm64 bundle in draft release workflow (#5254) --- .github/workflows/draft-release.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/draft-release.yml b/.github/workflows/draft-release.yml index e71f1ec237b..20f326e6d32 100644 --- a/.github/workflows/draft-release.yml +++ b/.github/workflows/draft-release.yml @@ -39,6 +39,7 @@ jobs: - name: Download GMT tarballs and installers run: | curl -O ftp://ftp.soest.hawaii.edu/gmt/bin/gmt-${{ env.GMT_VERSION }}-darwin-x86_64.dmg + curl -O ftp://ftp.soest.hawaii.edu/gmt/bin/gmt-${{ env.GMT_VERSION }}-darwin-arm64.dmg curl -O ftp://ftp.soest.hawaii.edu/gmt/gmt-${{ env.GMT_VERSION }}-src.tar.gz curl -O ftp://ftp.soest.hawaii.edu/gmt/gmt-${{ env.GMT_VERSION }}-src.tar.xz curl -O ftp://ftp.soest.hawaii.edu/gmt/bin/gmt-${{ env.GMT_VERSION }}-win64.exe @@ -52,6 +53,7 @@ jobs: run: | shasum -a 256 \ gmt-${{ env.GMT_VERSION }}-darwin-x86_64.dmg \ + gmt-${{ env.GMT_VERSION }}-darwin-arm64.dmg \ gmt-${{ env.GMT_VERSION }}-src.tar.gz \ gmt-${{ env.GMT_VERSION }}-src.tar.xz \ gmt-${{ env.GMT_VERSION }}-win64.exe \ @@ -80,7 +82,8 @@ jobs: | **File** | **Description** | |--------------------------------|-----------------------------------------| | gmt-${{ env.GMT_VERSION }}-checksums.txt | sha256sum of source and binary packages | - | gmt-${{ env.GMT_VERSION }}-darwin-x86_64.dmg | macOS bundle | + | gmt-${{ env.GMT_VERSION }}-darwin-x86_64.dmg | macOS bundle (intel) | + | gmt-${{ env.GMT_VERSION }}-darwin-arm64.dmg | macOS bundle (arm64) | | gmt-${{ env.GMT_VERSION }}-src.tar.gz | Source code | | gmt-${{ env.GMT_VERSION }}-src.tar.xz | Source code | | gmt-${{ env.GMT_VERSION }}-win32.exe | Windows installer (32bit) | @@ -90,6 +93,7 @@ jobs: files: | gmt-${{ env.GMT_VERSION }}-checksums.txt gmt-${{ env.GMT_VERSION }}-darwin-x86_64.dmg + gmt-${{ env.GMT_VERSION }}-darwin-arm64.dmg gmt-${{ env.GMT_VERSION }}-src.tar.gz gmt-${{ env.GMT_VERSION }}-src.tar.xz gmt-${{ env.GMT_VERSION }}-win32.exe @@ -107,7 +111,8 @@ jobs: | **File** | **Description** | |--------------------------------|-----------------------------------------| | gmt-${{ env.GMT_VERSION }}-checksums.txt | sha256sum of source and binary packages | - | gmt-${{ env.GMT_VERSION }}-darwin-x86_64.dmg | macOS bundle | + | gmt-${{ env.GMT_VERSION }}-darwin-x86_64.dmg | macOS bundle (intel) | + | gmt-${{ env.GMT_VERSION }}-darwin-arm64.dmg | macOS bundle (arm64) | | gmt-${{ env.GMT_VERSION }}-src.tar.gz | Source code | | gmt-${{ env.GMT_VERSION }}-src.tar.xz | Source code | | gmt-${{ env.GMT_VERSION }}-win64.exe | Windows installer (64bit) | @@ -116,6 +121,7 @@ jobs: files: | gmt-${{ env.GMT_VERSION }}-checksums.txt gmt-${{ env.GMT_VERSION }}-darwin-x86_64.dmg + gmt-${{ env.GMT_VERSION }}-darwin-arm64.dmg gmt-${{ env.GMT_VERSION }}-src.tar.gz gmt-${{ env.GMT_VERSION }}-src.tar.xz gmt-${{ env.GMT_VERSION }}-win64.exe