Skip to content

Commit

Permalink
Use multiline env format for github actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
mgdaily committed Jun 19, 2024
1 parent b0f16f3 commit caaeb2d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,11 @@ jobs:

# Read public key
- name: Read Public Key
run: echo "PUBLIC_KEY=$(cat ./public_key)" >> $GITHUB_ENV
run: |
{
echo "PUBLIC_KEY=$(cat ./public_key)"
echo EOF
} >> $GITHUB_ENV
# Set up Python 3.9 environment
- name: Set up Python
Expand Down

0 comments on commit caaeb2d

Please sign in to comment.