Skip to content

Commit

Permalink
Merge pull request #1 from twentyfourg/environment-files
Browse files Browse the repository at this point in the history
refactor: update action to use environment files not set-output
  • Loading branch information
kylehutchens authored Oct 17, 2022
2 parents d8e1738 + 76105ed commit d218d80
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ AWS_ACCESS_KEY_ID=$(jq -r '.data.access_key' creds.json)
AWS_SECRET_ACCESS_KEY=$(jq -r '.data.secret_key' creds.json)
AWS_SESSION_TOKEN=$(jq -r '.data.security_token' creds.json)

echo "::set-output name=access_key::$AWS_ACCESS_KEY_ID"
echo "::set-output name=secret_key::$AWS_SECRET_ACCESS_KEY"
echo "::set-output name=session_token::$AWS_SESSION_TOKEN"
echo "access_key=$AWS_ACCESS_KEY_ID" >> $GITHUB_OUTPUT
echo "secret_key=$AWS_SECRET_ACCESS_KEY" >> $GITHUB_OUTPUT
echo "session_token=$AWS_SESSION_TOKEN" >> $GITHUB_OUTPUT

0 comments on commit d218d80

Please sign in to comment.