From 59b623c17052252a5ff41ab31a1640ab5a2c09d1 Mon Sep 17 00:00:00 2001 From: qwsdcvghyu89 <61093706+qwsdcvghyu89@users.noreply.github.com> Date: Fri, 5 Jun 2026 00:30:11 +1000 Subject: [PATCH] Reverted to use node (actions runner now has `node` available) --- .gitea/workflows/build_releases.yaml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/build_releases.yaml b/.gitea/workflows/build_releases.yaml index d2a58a7..ce6411e 100644 --- a/.gitea/workflows/build_releases.yaml +++ b/.gitea/workflows/build_releases.yaml @@ -14,20 +14,17 @@ jobs: contents: write steps: - # 1. Native Shell Checkout inside an Alpine-Git Container + # 1. Standard Checkout (Works now because Node is installed!) - name: Checkout Code - uses: docker://alpine/git:latest - entrypoint: /bin/sh - with: - args: -c "git clone https://git.main.qwsdcvghyu.com/riley/aeqw89.tools.Publish.git . && git checkout ${{ github.sha }}" + uses: actions/checkout@v4 - # 2. Run the .NET compilation step + # 2. Run the .NET compilation step inside an isolated .NET container - name: 'Execute .NET Publish Target' uses: docker://mcr.microsoft.com/dotnet/sdk:9.0 with: args: dotnet build aeqw89.tools.Publish/aeqw89.tools.Publish.csproj -t:PublishAll - # 3. This runs on the host to seamlessly upload to the Gitea release + # 3. Upload to Gitea Release natively on the host - name: Update Nightly Release uses: softprops/action-gh-release@v2 with: