ci: add CI, build, and publish GitHub Actions workflows - #7
Merged
Merged
Conversation
Add three workflows plus the env/distribution plumbing they rely on: - ci.yml: typecheck + vitest on push to main and on every PR - build.yml: cross-platform test packaging (mac arm64/x64, windows, linux) on PRs and manual dispatch, uploading the installers as artifacts - publish.yml: on v* tags, package every platform, generate the changelog and GitHub Release via changelogithub, then attach the installers and upload them (plus the update manifest) to Cloudflare R2 for public download Supporting changes: - scripts/with-env.mjs loads the monorepo-root .env for the electron-builder step (CI/Action env always wins), keeps macOS builds unsigned without a keychain prompt unless CSC_LINK is set, and emits the latest*.yml update manifest + app-update.yml when R2_PUBLIC_BASE_URL is configured - electron-builder.yml: drop the hardcoded mac identity: null (signing is now driven by env) - .env.example: reserve the optional Apple-signing and Cloudflare R2 variables - CONTRIBUTING.md: document every env var, the workflows, how to cut a release, and how to enable signing Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
The scoped package name @oh-my-github/client sanitizes to @oh-my-githubclient, whose '@' is illegal in an AppImage executable path, failing the Linux build. Set a clean linux.executableName (oh-my-github); macOS/Windows are unaffected. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
sheepbox8646
force-pushed
the
ci/github-actions
branch
from
June 30, 2026 13:50
cced3cf to
5309fa0
Compare
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.
Add three workflows plus the env/distribution plumbing they rely on:
Supporting changes: