From 937b1345f172934007d00e1655a6629ef69a0799 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sun, 31 May 2026 22:50:20 -0500 Subject: [PATCH] [nostalgia/gitea] Fix artifact names in Mac build --- .gitea/workflows/build.yaml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 093d98d3..3c6e0263 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -38,10 +38,9 @@ jobs: - run: make purge configure-release - run: make build - run: make test - - run: make install - - run: mv dist/mac-arm64-release nostalgia-mac-arm64 - - run: tar cf nostalgia-mac-arm64.tar nostalgia-mac-arm64 + - run: make pkg-mac + - run: mv dist/darwin-arm64-release/NostalgiaStudio.dmg NostalgiaStudio.dmg - uses: actions/upload-artifact@v3 with: - name: nostalgia-mac-arm64 - path: nostalgia-mac-arm64.tar + name: NostalgiaStudio.dmg + path: NostalgiaStudio.dmg