From 22d3954e6fe363f5e79260e4b25ba2291cd86133 Mon Sep 17 00:00:00 2001 From: tiny-craft <137850705+tiny-craft@users.noreply.github.com> Date: Tue, 17 Oct 2023 21:17:43 +0800 Subject: [PATCH] chore: rename platform tag of macOS dmg from "amd64" to "intel" --- .github/workflows/release-macos.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-macos.yaml b/.github/workflows/release-macos.yaml index f5639dd..41bfa37 100644 --- a/.github/workflows/release-macos.yaml +++ b/.github/workflows/release-macos.yaml @@ -22,7 +22,7 @@ jobs: id: normalise_platform shell: bash run: | - tag=$(echo ${{ matrix.platform }} | sed -e 's/\//_/g' -e 's/darwin/mac/g') + tag=$(echo ${{ matrix.platform }} | sed -e 's/\//_/g' -e 's/darwin/mac/g' -e 's/amd64/intel/g') echo "tag=$tag" >> "$GITHUB_OUTPUT" - name: Normalise version tag