Skip to content
This repository was archived by the owner on May 24, 2025. It is now read-only.

Commit 44e5c93

Browse files
authored
🔧 Fix workflow for Mac building (upload-artifact)
It's turns out that actually upload-artifact@v3 is obsolete so that's why workflow has been failed. Updated to v4, and removed extensions from `name` etiquette in upload-artifacts, ty for going me outside my wrong minds. (`name` of artifacts should not have an extension, otherwise it's a tiny trap btw)
1 parent c207e6f commit 44e5c93

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ jobs:
5555
destfilename: "AppleMusic_Discord_RPC-${{ github.ref_name }}-mac-amd64.zip"
5656

5757
- name: Upload artifact 📦 (Intel-based Macs)
58-
uses: actions/upload-artifact@v3
58+
uses: actions/upload-artifact@v4
5959
with:
60-
name: AppleMusic_Discord_RPC-${{ github.ref_name }}-mac-amd64.zip
60+
name: AppleMusic_Discord_RPC-${{ github.ref_name }}-mac-amd64
6161
path: ./AppleMusic_Discord_RPC-${{ github.ref_name }}-mac-amd64.zip
6262

6363
- name: Build Release 🛠 (Apple Silicon-based Macs)
@@ -80,7 +80,7 @@ jobs:
8080
destfilename: "AppleMusic_Discord_RPC-${{ github.ref_name }}-mac-arm64.zip"
8181

8282
- name: Upload artifact 📦 (Apple Silicon-based Macs)
83-
uses: actions/upload-artifact@v3
83+
uses: actions/upload-artifact@v4
8484
with:
85-
name: AppleMusic_Discord_RPC-${{ github.ref_name }}-mac-arm64.zip
85+
name: AppleMusic_Discord_RPC-${{ github.ref_name }}-mac-arm64
8686
path: ./AppleMusic_Discord_RPC-${{ github.ref_name }}-mac-arm64.zip

0 commit comments

Comments
 (0)