We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f3ef6f commit f574b2cCopy full SHA for f574b2c
.github/workflows/publish.yaml
@@ -30,9 +30,11 @@ jobs:
30
shell: bash
31
run: |
32
aws ssm get-parameter --name /github/app/CBMyFrontDesk/private-key --output text --with-decryption --query Parameter.Value > private.key
33
- echo "APP_PRIVATE_KEY<<EOF" >> $GITHUB_ENV
34
- cat private.key >> $GITHUB_ENV
35
- echo "EOF" >> $GITHUB_ENV
+ {
+ echo "key<<EOF"
+ cat private.key
36
+ echo "EOF"
37
+ } >> $GITHUB_OUTPUT
38
while read -r line;
39
do
40
if [[ -n "${line}" ]]; then
@@ -46,7 +48,7 @@ jobs:
46
48
uses: tibdex/github-app-token@v2
47
49
with:
50
app_id: 391670
- private_key: ${{ env.APP_PRIVATE_KEY }}
51
+ private_key: ${{ steps.app-private-key.outputs.key }}
52
53
- name: Checkout code
54
uses: actions/checkout@v4
0 commit comments