Skip to content

Commit

Permalink
Review App workflow improvements, controlplane app.yml fixes (#601)
Browse files Browse the repository at this point in the history
  • Loading branch information
rameziophobia authored Aug 26, 2024
1 parent 30a0da2 commit 12c2463
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .controlplane/templates/app.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Template setup of the GVC, roughly corresponding to a Heroku app
kind: gvc
name: { { APP_NAME } }
name: {{APP_NAME}}
spec:
# For using templates for test apps, put ENV values here, stored in git repo.
# Production apps will have values configured manually after app creation.
Expand All @@ -22,9 +22,9 @@ spec:
# Part of standard configuration
staticPlacement:
locationLinks:
- { { APP_LOCATION_LINK } }
- {{APP_LOCATION_LINK}}

---
# Identity is needed to access secrets
kind: identity
name: { { APP_IDENTITY } }
name: {{APP_IDENTITY}}
2 changes: 1 addition & 1 deletion .github/workflows/deploy-to-control-plane-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
echo "PR_NUMBER is not set. Aborting."
exit 1
fi
echo "PR_NUMBER=\"$PR_NUMBER\"" >> $GITHUB_ENV
echo "PR_NUMBER=$PR_NUMBER" >> $GITHUB_ENV
- name: Get App Name
run: |
echo "PR_NUMBER: ${{ env.PR_NUMBER }}"
Expand Down

0 comments on commit 12c2463

Please sign in to comment.