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 23de61f commit c438c04Copy full SHA for c438c04
1 file changed
.github/workflows/docs-local.yml
@@ -121,6 +121,11 @@ jobs:
121
echo INTERNAL_PORT=${{ secrets.PORT }} >> ./deploy/.env
122
echo DOCKER_HUB_USER=${{ secrets.DOCKER_HUB_USER }} >> ./deploy/.env
123
echo DOCKER_IMAGE_NAME=${{ secrets.DOCKER_IMAGE_NAME }} >> ./deploy/.env
124
+ - name: Normalize line endings for deploy scripts
125
+ run: |
126
+ sudo apt-get update -y
127
+ sudo apt-get install -y dos2unix
128
+ find ./deploy -type f -name "*.sh" -exec dos2unix {} \;
129
- name: Deploy using SSH 🚛
130
uses: UnterrainerInformatik/ssh-deploy-action@v1
131
with:
0 commit comments