From 41ada3fa609d40a8ce800a409fc5bd66adf8b1d6 Mon Sep 17 00:00:00 2001 From: Jack O'Sullivan Date: Tue, 18 Aug 2026 23:17:25 +0100 Subject: [PATCH] ci/installer: Switch to gitea-release-action `release-action` is archived; its repository points at `gitea-release-action` as the replacement. The inputs were renamed (`api_key` -> `token`, `title` -> `name`). The new action is a Node one rather than Go, so the Go setup step kept in the previous commit is no longer needed. Co-Authored-By: Claude Opus 5 --- .gitea/workflows/installer.yaml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/installer.yaml b/.gitea/workflows/installer.yaml index ccb0103..d26a4b7 100644 --- a/.gitea/workflows/installer.yaml +++ b/.gitea/workflows/installer.yaml @@ -10,10 +10,6 @@ jobs: runs-on: ubuntu-26.04 steps: - uses: actions/checkout@v6 - - name: Set up Go - uses: https://github.com/actions/setup-go@v4 - with: - go-version: '>=1.20.1' - uses: DeterminateSystems/determinate-nix-action@v3 with: # Gitea will supply a token in GITHUB_TOKEN, which this action passes to @@ -46,10 +42,10 @@ jobs: jackos-installer-netboot-${{ steps.setup.outputs.short_rev }}.tar.zst - name: Create release - uses: https://gitea.com/actions/release-action@main + uses: https://gitea.com/actions/gitea-release-action@main with: - title: Latest installer - api_key: '${{ secrets.RELEASE_TOKEN }}' + name: Latest installer + token: '${{ secrets.RELEASE_TOKEN }}' files: | jackos-installer-${{ steps.setup.outputs.short_rev }}.iso jackos-installer-netboot-${{ steps.setup.outputs.short_rev }}.tar.zst