chore: combine tauri-release workflow into release workflow - #261
Merged
Conversation
Merges the separate workflow_run-triggered Tauri build into release.yml as a desktop job that depends on release. Removes the release-info artifact bridge; the desktop matrix now reads the tag from the release job outputs and checks it out so tauri.conf.json picks up the bumped version.
Deploying timetrackerpro with
|
| Latest commit: |
f0ba7ad
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://0bdffd0c.timetrackerpro.pages.dev |
| Branch Preview URL: | https://updated-release-workflow.timetrackerpro.pages.dev |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Combines
.github/workflows/tauri-release.ymlinto.github/workflows/release.ymlso releasing is a single workflow run instead of aworkflow_run-chained pair.Changes
release.ymlnow has four jobs:detect→approve-major→release→desktopreleasejob gainedoutputs(version,tag); therelease-info.txtartifact upload is removed since it only existed to pass the tag across workflowsdesktopjob:macos-latest+windows-latestmatrix, checks out the new tag, builds and publishes signed DMG/NSIS installers withtauri-apps/tauri-action, attaching them to the release created by thereleasejobdesktopusessecrets.GITHUB_TOKEN— theGH_TOKENPAT was only needed for the cross-workflow artifact downloadtauri-release.ymldeletedAll original
release.ymlchecks and steps (bump detection, major-release approval gate, version bump commit, tag, changelog, GitHub Release, step summary) are unchanged.Verification
detect,approve-major,release,desktoptauri.conf.json's"version": "../package.json"pointing at the bumped version🤖 Generated with Claude Code