We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c037f53 + a4d7bce commit a2831fbCopy full SHA for a2831fb
1 file changed
.github/workflows/release-artifacts.yml
@@ -53,6 +53,10 @@ jobs:
53
- name: Publish
54
uses: softprops/action-gh-release@v2
55
with:
56
- files: "SharpFM*"
+ # Narrowed to the versioned archive pattern: SharpFM-v{tag}-{target}.{tar.gz|zip}.
57
+ # The previous "SharpFM*" glob also matched SharpFM.sln at the
58
+ # repo root, which three parallel matrix runners then raced to
59
+ # upload, producing "Not Found" errors on the update endpoint.
60
+ files: "SharpFM-*"
61
env:
62
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments