Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions .github/workflows/deploy-to-control-plane-review-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,14 +111,17 @@ jobs:
fi

# Check if app exists and save state
if ! cpflow exists -a ${{ env.APP_NAME }}; then
echo "apple"
echo "$(cpflow exists -a ${{ env.APP_NAME }})"
if [[ cpflow exists -a ${{ env.APP_NAME }} ]]; then
echo "review app does not exist!"
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
exit 0
echo "Canceling job as review app has not been previously deployed."; sleep inf
fi
echo "APP_EXISTS=false"
echo "APP_EXISTS=false" >> $GITHUB_ENV
else
echo "APP_EXISTS=true" >> $GITHUB_ENV
fi
echo "bananas"

- name: Validate Deployment Request
id: validate
Expand Down
2 changes: 1 addition & 1 deletion client/app/bundles/comments/components/Footer/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default class Footer extends BaseComponent {
</a>
<a href="https://x.com/railsonmaui" className="flex gap-4 items-center">
<div className="w-16 h-16 bg-[url('../images/twitter_64.png')]" />
Rails On Maui on X
Rails On Maui on Twitter
</a>
</div>
</footer>
Expand Down
Loading