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 460d0c7 commit dce38beCopy full SHA for dce38be
.github/workflows/cd.yml
@@ -98,7 +98,8 @@ jobs:
98
script: |
99
cd ${{ matrix.target_path }}
100
echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
101
- echo "${{ secrets.PROD_FULL_ENV_FILE }}" > .env
+ envstr='${{ secrets.PROD_ENV_FILE }}'
102
+ echo -e $envstr > .env
103
docker compose -f ${{ matrix.compose_file }} pull
104
docker compose -f ${{ matrix.compose_file }} down
105
docker compose -f ${{ matrix.compose_file }} up -d
0 commit comments