From e336a370cda8fd8d78bd08eb8e86d350c879015e Mon Sep 17 00:00:00 2001 From: "hinto.janai" Date: Sun, 4 Jun 2023 09:54:25 -0400 Subject: [PATCH] download.yml: add macOS arm64 --- .github/workflows/download.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/download.yml b/.github/workflows/download.yml index e52407d..2726ebb 100644 --- a/.github/workflows/download.yml +++ b/.github/workflows/download.yml @@ -21,10 +21,14 @@ jobs: run: wget --content-disposition "https://gupax.io/windows-bundle" - name: Download Windows Standalone run: wget --content-disposition "https://gupax.io/windows" - - name: Download macOS Bundle - run: wget --content-disposition "https://gupax.io/macos-bundle" - - name: Download macOS Standalone - run: wget --content-disposition "https://gupax.io/macos" + - name: Download macOS-x64 Bundle + run: wget --content-disposition "https://gupax.io/macos-x64-bundle" + - name: Download macOS-x64 Standalone + run: wget --content-disposition "https://gupax.io/macos-x64" + - name: Download macOS-arm64 Bundle + run: wget --content-disposition "https://gupax.io/macos-arm64-bundle" + - name: Download macOS-arm64 Standalone + run: wget --content-disposition "https://gupax.io/macos-arm64" - name: Download Linux Bundle run: wget --content-disposition "https://gupax.io/linux-bundle" - name: Download Linux Standalone