mirror of
https://github.com/Psychotoxical/psysonic.git
synced 2026-07-22 15:25:46 +00:00
8d424fbc98
* fix(release): create missing app-v tag before release verification Ensure reusable publish creates and pushes the expected app-v tag when absent, then validates it points to source_ref. This prevents release records with tag_name but no git refs/tags object, which previously broke Source code archives. * fix(release): pin tauri publish to tagged release metadata Pass tagName/releaseName/releaseDraft/prerelease to tauri-action in addition to releaseId, so asset upload fallback remains bound to the expected app-v release instead of creating untagged releases. * chore(ci): align workflow action versions for release flow Update github-script usage to v9 across release-related workflows and keep the current tauri-action release binding changes in the same branch for testing. * fix(release): harden tagged release resolution for source-only promote Canonicalize release_id via getReleaseByTag after create/update and fail fast on invalid tag/commit inputs to avoid untagged release binding. Also propagate source-only marker through promote push events so push-triggered channel runs skip platform artifacts and verify-nix consistently.
31 lines
1.2 KiB
YAML
31 lines
1.2 KiB
YAML
name: Release Channel
|
|
|
|
# workflow_dispatch: use workflow from `main` for latest publish logic; checkout ref is always `release`.
|
|
on:
|
|
push:
|
|
branches: [release]
|
|
# Same nix-refresh loop as next.yml — ignore lock-only merges from verify-nix PRs.
|
|
paths-ignore:
|
|
- "flake.lock"
|
|
- "nix/**"
|
|
workflow_dispatch:
|
|
inputs:
|
|
source_only:
|
|
description: "Create/refresh tagged release only (skip platform builds and verify-nix)"
|
|
required: false
|
|
default: false
|
|
type: boolean
|
|
|
|
jobs:
|
|
publish-release:
|
|
uses: ./.github/workflows/reusable-channel-publish.yml
|
|
with:
|
|
channel: release
|
|
source_ref: release
|
|
target_branch: release
|
|
prerelease: false
|
|
draft_release: true
|
|
verify_nix: ${{ !((github.event_name == 'workflow_dispatch' && github.event.inputs.source_only == 'true') || (github.event_name == 'push' && contains(github.event.head_commit.message, '[source-only]'))) }}
|
|
build_platform_artifacts: ${{ !((github.event_name == 'workflow_dispatch' && github.event.inputs.source_only == 'true') || (github.event_name == 'push' && contains(github.event.head_commit.message, '[source-only]'))) }}
|
|
secrets: inherit
|