Skip to content

Commit 12c2463

Browse files
Review App workflow improvements, controlplane app.yml fixes (#601)
1 parent 30a0da2 commit 12c2463

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.controlplane/templates/app.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Template setup of the GVC, roughly corresponding to a Heroku app
22
kind: gvc
3-
name: { { APP_NAME } }
3+
name: {{APP_NAME}}
44
spec:
55
# For using templates for test apps, put ENV values here, stored in git repo.
66
# Production apps will have values configured manually after app creation.
@@ -22,9 +22,9 @@ spec:
2222
# Part of standard configuration
2323
staticPlacement:
2424
locationLinks:
25-
- { { APP_LOCATION_LINK } }
25+
- {{APP_LOCATION_LINK}}
2626

2727
---
2828
# Identity is needed to access secrets
2929
kind: identity
30-
name: { { APP_IDENTITY } }
30+
name: {{APP_IDENTITY}}

.github/workflows/deploy-to-control-plane-review.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
echo "PR_NUMBER is not set. Aborting."
7474
exit 1
7575
fi
76-
echo "PR_NUMBER=\"$PR_NUMBER\"" >> $GITHUB_ENV
76+
echo "PR_NUMBER=$PR_NUMBER" >> $GITHUB_ENV
7777
- name: Get App Name
7878
run: |
7979
echo "PR_NUMBER: ${{ env.PR_NUMBER }}"

0 commit comments

Comments
 (0)