From e00e381ae7fbdbf6f817d49c184437a8eb636572 Mon Sep 17 00:00:00 2001 From: Kristin Martin Date: Wed, 29 Jul 2026 15:25:28 +0000 Subject: [PATCH] Fix review apps guide to use fly-pr-review-apps@1.2.1 The customization examples still referenced @1.2.0, which fails with 'unknown flag: --region'. Bump them to @1.2.1 to match the main example and avoid the error. --- blueprints/review-apps-guide.html.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/blueprints/review-apps-guide.html.md b/blueprints/review-apps-guide.html.md index d59e192be3..b87b4ce260 100644 --- a/blueprints/review-apps-guide.html.md +++ b/blueprints/review-apps-guide.html.md @@ -120,7 +120,7 @@ These inputs can be added to the `deploy` step in your workflow using the `with` # ... - name: Deploy PR app to Fly.io id: deploy - uses: superfly/fly-pr-review-apps@1.2.0 + uses: superfly/fly-pr-review-apps@1.2.1 with: name: my-app-name-pr-${{ github.event.number }} config: fly.review.toml @@ -139,7 +139,7 @@ You probably won't need the same specifications for the Fly Machines used by rev # ... - name: Deploy PR app to Fly.io id: deploy - uses: superfly/fly-pr-review-apps@1.2.0 + uses: superfly/fly-pr-review-apps@1.2.1 with: config: fly.review.toml ``` @@ -165,7 +165,7 @@ Once you have your secrets and environment variables set in GitHub, add each of # ... - name: Deploy PR app to Fly.io id: deploy - uses: superfly/fly-pr-review-apps@1.2.0 + uses: superfly/fly-pr-review-apps@1.2.1 with: secrets: FOOBAR=${{ secrets.FOOBAR }} SOME_API_KEY=${{ secrets.SOME_API_KEY}} ```