rtghe
Some checks failed
Spellcheck / Spellcheck (push) Successful in 13s
Tests / Evaluate Tests on ubuntu-latest (push) Has been cancelled

This commit is contained in:
2026-08-07 14:26:31 -04:00
parent 835cc42d33
commit 0d94eef283

View File

@@ -33,7 +33,7 @@ jobs:
DOTNET_NOLOGO: true
steps:
- name: Checkout
uses: actions/checkout@v7
uses: actions/checkout@v6
with:
token: ${{ secrets.GH_BASIC }}
lfs: true
@@ -66,9 +66,6 @@ jobs:
global-json-file: global.json
# Write version to file so .NET will build correct version.
- name: Write Version to File
run: |
sed -i 's/0\.0\.0-devbuild/${{ steps.next-version.outputs.version }}/g' \
GodotHelper/GodotHelper.csproj
uses: jacobtomlinson/gha-find-replace@v3
with:
find: "0.0.0-devbuild"
@@ -92,7 +89,7 @@ jobs:
# run: |
# version="${{ steps.next-version.outputs.version }}"
# curl -X POST "https://gitea.superjrking.com/api/packages/Ronnie/GodotHelpers/releases" \
# curl -X POST "http://gitea.superjrking.com/api/packages/Ronnie/GodotHelpers/releases" \
# -H "Authorization: token ${{ secrets.GH_BASIC }}" \
# -H "Content-Type: application/json" \
# -d "{
@@ -103,7 +100,7 @@ jobs:
- name: Publish to Nuget
run: |
dotnet nuget push "${{ steps.package-path.outputs.package }}" \
--source "https://gitea.superjrking.com/api/packages/Ronnie/nuget/index.json" \
--source "http://gitea.superjrking.com/api/packages/Ronnie/nuget/index.json" \
--allow-insecure-connections \
--api-key "${{ secrets.NUGET_KEY }}" \
--skip-duplicate