refactor: migrate to keyring-core and reusable workflows - #6
Merged
Conversation
Comment on lines
+11
to
+17
| uses: weekendsuperhero-io/platform-tools/.github/workflows/reusable-rust-ci.yml@main | ||
| with: | ||
| check-os-json: '["ubuntu-latest","macos-latest","windows-latest"]' | ||
| rust-cache-provider: github | ||
| docs-os: ubuntu-latest | ||
| linux-packages: "libdbus-1-dev pkg-config" | ||
| build-matrix-json: "[]" |
Comment on lines
+9
to
+12
| uses: weekendsuperhero-io/platform-tools/.github/workflows/reusable-pr-description.yml@main | ||
| with: | ||
| trigger-phrase: "@agent pr-title" # optional — only runs if this phrase is in the PR body | ||
| secrets: inherit |
Comment on lines
+10
to
+31
| uses: weekendsuperhero-io/platform-tools/.github/workflows/reusable-rust-release.yml@main | ||
| with: | ||
| validate-runs-on: ubuntu-latest | ||
| rust-cache-provider: github | ||
| validate-linux-packages: "libdbus-1-dev pkg-config" | ||
| # Optional override if binary cannot be inferred from Cargo.toml | ||
| # binary-name: agentmail | ||
| binary-matrix-json: >- | ||
| [ | ||
| {"name":"linux-x86_64","os":"ubuntu-latest","target":"x86_64-unknown-linux-gnu"}, | ||
| {"name":"linux-aarch64","os":"ubuntu-24.04-arm","target":"aarch64-unknown-linux-gnu"}, | ||
| {"name":"macos-x86_64","os":"macos-latest","target":"x86_64-apple-darwin"}, | ||
| {"name":"macos-aarch64","os":"macos-latest","target":"aarch64-apple-darwin"}, | ||
| {"name":"windows-x86_64","os":"windows-latest","target":"x86_64-pc-windows-msvc"} | ||
| ] | ||
| enable-macos-universal: true | ||
| # Optional overrides if your artifact names differ: | ||
| # macos-universal-arm64-artifact: macos-aarch64 | ||
| # macos-universal-x86_64-artifact: macos-x86_64 | ||
| publish-crates-io: true | ||
| cargo-publish-command: cargo publish | ||
| secrets: inherit |
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
secret-libwithkeyring-coreand native OS keyring stores.Changes
Secrets Management
src/secret.rsimplementingRaw,Keyring, andCommandbackends.Cargo.tomlwith platform-specific keyring dependencies.main.rsfor Windows, macOS, and Linux.CI/CD Workflows
ci.ymlandrelease.ymlto use centralized reusable workflows.libdbus-1-dev,pkg-config) to workflow configs..github/workflows/changelog.ymland.github/workflows/pr-desc.yml.Test plan
PR description generated by Agent