From ca86988d22d627d9d570a27c7c5cd22b7b476d4b Mon Sep 17 00:00:00 2001 From: thedavidmeister Date: Mon, 11 May 2026 00:52:11 +0400 Subject: [PATCH] ci: publish to soldeer on v* tags MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit One-line wrapper over rainix's reusable. Pushes the project to soldeer.xyz on every v-prefixed tag. Package name defaults to rain-math-float (rainix derives it from repo name with `.` -> `-`), which matches the convention. Requires the project to exist on soldeer.xyz first — the registry rejects pushes to nonexistent projects. SOLDEER_API_TOKEN is inherited from org secrets. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/publish-soldeer.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .github/workflows/publish-soldeer.yaml diff --git a/.github/workflows/publish-soldeer.yaml b/.github/workflows/publish-soldeer.yaml new file mode 100644 index 0000000..066aa41 --- /dev/null +++ b/.github/workflows/publish-soldeer.yaml @@ -0,0 +1,8 @@ +name: Publish to Soldeer +on: + push: + tags: ["v*"] +jobs: + publish: + uses: rainlanguage/rainix/.github/workflows/publish-soldeer.yaml@main + secrets: inherit