From 3381934b6d15aee57913b47c6e83161cd8bca442 Mon Sep 17 00:00:00 2001 From: Joshua Sierles Date: Fri, 17 Feb 2023 11:13:52 +0100 Subject: [PATCH 1/3] try to fix markdown --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3d28de1..6416852 100644 --- a/README.md +++ b/README.md @@ -7,8 +7,10 @@ This action wraps the flyctl CLI tool to allow deploying and managing fly apps. > > Tip >
-> For production deployments, we recommend [pinning to a specific version](#pin-to-a-specific-fly-version) of flyctl to avoid changes in `flyctl` behavior affecting your deployment. +> +> For production deployments, we recommend [pinning to a specific version][pinning] of flyctl to avoid changes in `flyctl` behavior affecting your deployment. +[pinning]: #pin-to-a-specific-fly-version ```yaml name: Deploy to Fly From 6eed4a7e82f2e048a3c7b25c828fc736bdcc37ff Mon Sep 17 00:00:00 2001 From: Joshua Sierles Date: Fri, 17 Feb 2023 11:26:56 +0100 Subject: [PATCH 2/3] better words --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6416852..6eac6a2 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ This action wraps the flyctl CLI tool to allow deploying and managing fly apps. > Tip >
> -> For production deployments, we recommend [pinning to a specific version][pinning] of flyctl to avoid changes in `flyctl` behavior affecting your deployment. +> For production deployments, [pin flyctl to a specific version][pinning] to avoid unexpected behavior in edge releases of `flyctl`. [pinning]: #pin-to-a-specific-fly-version @@ -33,7 +33,7 @@ jobs: ```yaml - uses: superfly/flyctl-actions/setup-flyctl@master with: - version: 0.0.308 + version: 0.0.462 ``` ### Running one-off scripts From b529ded36732c9b0d784f6602fbf06b382fbcef6 Mon Sep 17 00:00:00 2001 From: Joshua Sierles Date: Fri, 17 Feb 2023 11:34:05 +0100 Subject: [PATCH 3/3] fix link --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6eac6a2..5865565 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# GitHub Actions for flyctl +# Automate Fly.io app deployment -This action wraps the flyctl CLI tool to allow deploying and managing fly apps. We recommend using the `setup-flyctl` action which runs outside of Docker for speed and flexibility. +This action wraps the [Fly.io CLI](https://github.com/superfly/flyctl). Use it to deploy or manage your Fly.io application via [Github Actions events](https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows). ## Usage for Deployment > @@ -8,9 +8,9 @@ This action wraps the flyctl CLI tool to allow deploying and managing fly apps. > Tip >
> -> For production deployments, [pin flyctl to a specific version][pinning] to avoid unexpected behavior in edge releases of `flyctl`. +> For production deployments, [pin flyctl to a specific version][pinning] to avoid unexpected behavior in edge releases. -[pinning]: #pin-to-a-specific-fly-version +[pinning]: #pin-to-a-specific-version-of-flyctl ```yaml name: Deploy to Fly