From caaeb2d2c7beeb3546b732f7f6cfbfb52032d0de Mon Sep 17 00:00:00 2001 From: Matt Daily Date: Wed, 19 Jun 2024 14:00:56 -0700 Subject: [PATCH] Use multiline env format for github actions. https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#multiline-strings --- .github/workflows/deployment.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml index 0c2a981..2810677 100644 --- a/.github/workflows/deployment.yml +++ b/.github/workflows/deployment.yml @@ -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