From 56670cb0bafc781aad2fa3c49b6b6043223982dc Mon Sep 17 00:00:00 2001 From: ronnie Date: Fri, 7 Aug 2026 14:12:57 -0400 Subject: [PATCH] Manula wirte file tag --- .github/workflows/release.yaml | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index ac15e86..ec6d008 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -33,13 +33,13 @@ jobs: DOTNET_NOLOGO: true steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: token: ${{ secrets.GH_BASIC }} lfs: true submodules: 'recursive' fetch-depth: 0 # So we can get all tags. - fetch-tags: true + # fetch-tags: true - name: Read Current Project Version id: current-version @@ -66,12 +66,15 @@ jobs: global-json-file: global.json # Write version to file so .NET will build correct version. - name: Write Version to File - uses: jacobtomlinson/gha-find-replace@v3 - with: - find: "0.0.0-devbuild" - replace: ${{ steps.next-version.outputs.version }} - regex: false - include: GodotHelper/GodotHelper.csproj + 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" + # replace: ${{ steps.next-version.outputs.version }} + # regex: false + # include: GodotHelper/GodotHelper.csproj - name: Build working-directory: GodotHelper @@ -89,7 +92,7 @@ jobs: # run: | # version="${{ steps.next-version.outputs.version }}" - # curl -X POST "http://192.168.1.4:3000/api/packages/Ronnie/GodotHelpers/releases" \ + # curl -X POST "https://gitea.superjrking.com/api/packages/Ronnie/GodotHelpers/releases" \ # -H "Authorization: token ${{ secrets.GH_BASIC }}" \ # -H "Content-Type: application/json" \ # -d "{ @@ -100,7 +103,7 @@ jobs: - name: Publish to Nuget run: | dotnet nuget push "${{ steps.package-path.outputs.package }}" \ - --source "http://192.168.1.4:3000/api/packages/Ronnie/nuget/index.json" \ + --source "https://gitea.superjrking.com/api/packages/Ronnie/nuget/index.json" \ --allow-insecure-connections \ --api-key "${{ secrets.NUGET_KEY }}" \ --skip-duplicate