We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 868d7fc commit 5b4aa72Copy full SHA for 5b4aa72
1 file changed
.github/workflows/deploy.yml
@@ -116,7 +116,8 @@ jobs:
116
working-directory: /
117
comment: Deploy
118
command: |
119
- export DOPPLER_TOKEN="${{ secrets.DOPPLER_TOKEN }}"
+ cat << 'SCRIPT_END' | DOPPLER_TOKEN='${{ secrets.DOPPLER_TOKEN }}' bash
120
+ set -e
121
122
docker pull ghcr.io/${{ needs.buildImageAndPush.outputs.owner_lc }}/${{ needs.buildImageAndPush.outputs.image_name }}:latest
123
@@ -133,5 +134,5 @@ jobs:
133
134
ghcr.io/${{ needs.buildImageAndPush.outputs.owner_lc }}/${{ needs.buildImageAndPush.outputs.image_name }}:latest
135
136
rm -f /tmp/doppler.env
- unset DOPPLER_TOKEN
137
- docker image prune -f
+ docker image prune -f
138
+ SCRIPT_END
0 commit comments