-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from riccardogiorato/patch-1
fix action name to superfly/fly-pr-review-apps
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,7 +53,7 @@ jobs: | |
|
||
- name: Deploy | ||
id: deploy | ||
uses: brentd/fly-staging-app@v1 | ||
uses: superfly/fly-[email protected] | ||
``` | ||
## Cleaning up GitHub environments | ||
|
@@ -81,7 +81,7 @@ jobs: | |
- name: Deploy app | ||
id: deploy | ||
uses: brentd/fly-staging-app@v1 | ||
uses: superfly/fly-[email protected] | ||
- name: Clean up GitHub environment | ||
uses: strumwolf/delete-deployment-environment@v2 | ||
|
@@ -105,7 +105,7 @@ steps: | |
- name: Deploy app | ||
id: deploy | ||
uses: brentd/fly-staging-app@v1 | ||
uses: superfly/fly-[email protected] | ||
with: | ||
postgres: myapp-postgres-staging-apps | ||
``` | ||
|
@@ -121,7 +121,7 @@ steps: | |
- uses: actions/checkout@v2 | ||
- name: Deploy redis | ||
uses: brentd/fly-staging-app@v1 | ||
uses: superfly/fly-[email protected] | ||
with: | ||
update: false # Don't need to re-deploy redis when the PR is updated | ||
path: redis # Keep fly.toml in a subdirectory to avoid confusing flyctl | ||
|
@@ -130,7 +130,7 @@ steps: | |
- name: Deploy app | ||
id: deploy | ||
uses: brentd/fly-staging-app@v1 | ||
uses: superfly/fly-[email protected] | ||
with: | ||
name: pr-${{ github.event.number }}-myapp-app | ||
``` |