1 Commits
Author SHA1 Message Date
jpmschweitzerandClaude Opus 4.5 ec200c66ba fix(ci): Use curl for release creation
Build and Push / release (push) Successful in 3s
Build and Push / build (push) Successful in 1m10s
The release-action requires Go which isn't in the runner image.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-03 20:33:47 +01:00
3 changed files with 12 additions and 9 deletions
+6 -8
View File
@@ -9,15 +9,13 @@ jobs:
release: release:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4
- name: Create Gitea Release - name: Create Gitea Release
uses: https://gitea.com/actions/release-action@main run: |
with: curl -sf -X POST \
title: Release ${{ github.ref_name }} -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
body: "Automated release for ${{ github.ref_name }}" -H "Content-Type: application/json" \
env: -d '{"tag_name": "${{ github.ref_name }}", "name": "Release ${{ github.ref_name }}", "body": "Automated release for ${{ github.ref_name }}"}' \
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} "${{ github.server_url }}/api/v1/repos/${{ github.repository }}/releases"
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
+5
View File
@@ -4,6 +4,11 @@ All notable changes to The Scheduler will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [1.1.2] - 2026-01-03
### Fixed
- CI: Use curl for release creation (release-action requires Go)
## [1.1.1] - 2026-01-03 ## [1.1.1] - 2026-01-03
### Changed ### Changed
+1 -1
View File
@@ -1,6 +1,6 @@
[project] [project]
name = "the-scheduler" name = "the-scheduler"
version = "1.1.1" version = "1.1.2"
description = "System-wide maintenance orchestration - backups, doc mirroring, cleanup, task automation" description = "System-wide maintenance orchestration - backups, doc mirroring, cleanup, task automation"
readme = "README.md" readme = "README.md"
requires-python = ">=3.12" requires-python = ">=3.12"