From 04f6685cbb443c5dc7706184e06475aae0f9a80d Mon Sep 17 00:00:00 2001 From: Test User Date: Sun, 26 Apr 2026 19:57:20 +0800 Subject: [PATCH] fix: repair broken markdown formatting in recipe-onboarding step 6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The markdown list in step 6 ("Deploy Your First Resource") was improperly formatted — list items were concatenated with dashes on the same line instead of using proper bullet point formatting. The code block also had trailing spaces and incorrect indentation that would break rendering. Co-Authored-By: Claude Opus 4.7 --- .../google-cloud-recipe-onboarding/SKILL.md | 30 +++++++++++-------- 1 file changed, 17 insertions(+), 13 deletions(-) diff --git a/skills/cloud/google-cloud-recipe-onboarding/SKILL.md b/skills/cloud/google-cloud-recipe-onboarding/SKILL.md index 2242bb7f27..02d57d0618 100644 --- a/skills/cloud/google-cloud-recipe-onboarding/SKILL.md +++ b/skills/cloud/google-cloud-recipe-onboarding/SKILL.md @@ -95,19 +95,23 @@ default](https://docs.cloud.google.com/service-usage/docs/enabled-service#defaul ### 6. Deploy Your First Resource -Choose a simple entry point based on your needs: - -**[Cloud Run](https://docs.cloud.google.com/run/docs) (Recommended for Apps):** -Deploy a containerized "Hello World" app. - -**[Compute Engine](https://docs.cloud.google.com/compute/docs):** Create a small -Linux VM (e.g., `e2-micro` which is part of the Always Free tier in certain -regions). - **[Cloud Storage](https://docs.cloud.google.com/storage/docs):** -Create a bucket to store files. - -Example (Cloud Run): - -```bash - gcloud run deploy hello-world \ - --image=gcr.io/cloudrun/hello \ --platform=managed \ --region=us-central1 \ +Choose a simple entry point based on your needs: + +- **[Cloud Run](https://docs.cloud.google.com/run/docs) (Recommended for Apps):** + Deploy a containerized "Hello World" app. +- **[Compute Engine](https://docs.cloud.google.com/compute/docs):** Create a small + Linux VM (e.g., `e2-micro` which is part of the Always Free tier in certain + regions). +- **[Cloud Storage](https://docs.cloud.google.com/storage/docs):** Create a bucket + to store files. + +Example (Cloud Run): + +```bash +gcloud run deploy hello-world \ + --image=gcr.io/cloudrun/hello \ + --platform=managed \ + --region=us-central1 \ --allow-unauthenticated ```