File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed
Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,8 @@ It's 100% Open Source and licensed under the [APACHE2](LICENSE).
8787 - uses : cloudposse/github-action-secret-outputs@main
8888 id : role
8989 with :
90- secret : ${{ secret.PASSWORD }}
90+ # # PASSWORD is a gpg passphrase stored in Github Secrets.
91+ secret : ${{ secrets.PASSWORD }}
9192 op : encode
9293 in : ${{ steps.iam.outputs.role }}
9394
@@ -99,11 +100,12 @@ It's 100% Open Source and licensed under the [APACHE2](LICENSE).
99100 needs : [context]
100101 steps :
101102 - uses : cloudposse/github-action-secret-outputs@main
102- id : role
103- with :
104- secret : ${{ secret.PASSWORD }}
105- op : decode
106- in : ${{ needs.context.outputs.role }}
103+ id : role
104+ with :
105+ # # PASSWORD is a gpg passphrase stored in Github Secrets.
106+ secret : ${{ secrets.PASSWORD }}
107+ op : decode
108+ in : ${{ needs.context.outputs.role }}
107109
108110 - name : Configure AWS Credentials
109111 uses : aws-actions/configure-aws-credentials@v1
You can’t perform that action at this time.
0 commit comments