Remove Web, and enable releases
Build libsm64 / Build libsm64 for linux (push) Successful in 32s
Build libsm64 / Build libsm64 for windows (push) Successful in 24s
Build libsm64 / Snapshot Release (push) Failing after 2s

This commit is contained in:
2026-06-01 15:16:41 -05:00
parent 618902d50b
commit a6de039ac1
+14 -1
View File
@@ -84,6 +84,19 @@ jobs:
- name: Download artifacts
uses: actions/download-artifact@v3
- name: Create tag (required by Gitea)
id: create_tag
shell: bash
run: |
curl -s -X POST \
-H "Authorization: token ${{ secrets.LIBSM64_TOKEN }}" \
-H "Content-Type: application/json" \
"https://git.nepu.men/api/v1/repos/NepuShiro/libsm64/tags" \
-d '{
"tag_name": "build-${{ github.sha }}",
"target": "master"
}'
- name: Create release
id: create_release
shell: bash
@@ -93,7 +106,7 @@ jobs:
-H "Content-Type: application/json" \
"https://git.nepu.men/api/v1/repos/NepuShiro/libsm64/releases" \
-d '{
"tag_name": "latest",
"tag_name": "build-${{ github.sha }}",
"name": "Snapshot Build",
"prerelease": true
}')