From 857aa1e3088f4304f03c1294b577c046494affd4 Mon Sep 17 00:00:00 2001 From: Alex Holmberg Date: Wed, 2 Jul 2025 08:00:38 +0200 Subject: [PATCH 1/3] feat: test --- src/cli.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli.rs b/src/cli.rs index 32059c21..30d8b609 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -6,7 +6,7 @@ use std::path::PathBuf; #[command(version = env!("CARGO_PKG_VERSION"))] #[command(about = "Generate Infrastructure as Code from your codebase")] #[command( - long_about = "A powerful CLI tool that analyzes your codebase and automatically generates optimized Infrastructure as Code configurations including Dockerfiles, Docker Compose files, and Terraform configurations." + long_about = "A powerful CLI tool that analyzes your codebase and automatically generates optimized Infrastructure as Code configurations including Dockerfiles, Docker Compose files, and Terraform configurations" )] pub struct Cli { #[command(subcommand)] From 1fab87860d3803b841e49c10e3d6a87f52210d7f Mon Sep 17 00:00:00 2001 From: Alex Holmberg Date: Wed, 2 Jul 2025 08:13:07 +0200 Subject: [PATCH 2/3] feat: wrong named services --- .github/workflows/release-plz.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release-plz.yml b/.github/workflows/release-plz.yml index ef3f1fe2..b86ec428 100644 --- a/.github/workflows/release-plz.yml +++ b/.github/workflows/release-plz.yml @@ -11,26 +11,26 @@ permissions: jobs: release-plz-release: - if: ${{ github.repository_owner == 'syncable-dev' }} + if: ${{ github.repository_owner == 'syncable-dev' }} runs-on: ubuntu-latest permissions: contents: write env: - GITHUB_TOKEN: ${{ secrets.RELEASE_PLZ_TOKEN }} - CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} + GITHUB_TOKEN: ${{ secrets.RELEASE_PLZ_TOKEN }} + CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} steps: - name: Checkout repository uses: actions/checkout@v4 with: fetch-depth: 0 - token: ${{ secrets.RELEASE_PLZ_TOKEN }} # ← checkout must use the same token + token: ${{ secrets.RELEASE_PLZ_TOKEN }} # ← checkout must use the same token - name: Install Rust toolchain uses: dtolnay/rust-toolchain@stable - name: Run release-plz uses: release-plz/action@v0.5 with: command: release - manifest_path: rust-mcp-server-syncable-cli/Cargo.toml + manifest_path: syncable-cli/Cargo.toml release-plz-pr: if: ${{ github.repository_owner == 'syncable-dev' }} @@ -42,8 +42,8 @@ jobs: group: release-plz-${{ github.ref }} cancel-in-progress: false env: - GITHUB_TOKEN: ${{ secrets.RELEASE_PLZ_TOKEN }} - CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} + GITHUB_TOKEN: ${{ secrets.RELEASE_PLZ_TOKEN }} + CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} steps: - name: Checkout repository uses: actions/checkout@v4 @@ -56,4 +56,4 @@ jobs: uses: release-plz/action@v0.5 with: command: release-pr - manifest_path: rust-mcp-server-syncable-cli/Cargo.toml + manifest_path: syncable-cli/Cargo.toml From 5f2cfc5be22bb7d3c257bf2e34c78fa0a7af6725 Mon Sep 17 00:00:00 2001 From: Alex Holmberg Date: Wed, 2 Jul 2025 08:38:36 +0200 Subject: [PATCH 3/3] t --- .github/workflows/release-plz.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-plz.yml b/.github/workflows/release-plz.yml index b86ec428..9da4cf6d 100644 --- a/.github/workflows/release-plz.yml +++ b/.github/workflows/release-plz.yml @@ -30,7 +30,7 @@ jobs: uses: release-plz/action@v0.5 with: command: release - manifest_path: syncable-cli/Cargo.toml + manifest_path: Cargo.toml release-plz-pr: if: ${{ github.repository_owner == 'syncable-dev' }} @@ -56,4 +56,4 @@ jobs: uses: release-plz/action@v0.5 with: command: release-pr - manifest_path: syncable-cli/Cargo.toml + manifest_path: Cargo.toml