There was an error while loading. Please reload this page.
1 parent 3650095 commit 8b46d66Copy full SHA for 8b46d66
1 file changed
.github/workflows/deploy-application.yml
@@ -34,14 +34,13 @@ jobs:
34
port: ${{ secrets.SSH_PORT }}
35
key: ${{ secrets.DESTINATION_SSH_PRIVATE_KEY }}
36
script: |
37
+ # Non-interactive SSH does not load ~/.bashrc; nvm lives there.
38
+ export NVM_DIR="${NVM_DIR:-$HOME/.nvm}"
39
+ [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
40
cd ${{ secrets.SSH_PATH }}
41
git pull
42
cd web/app/plugins/cbf-multisite
- echo "SHELL=$SHELL"
- echo "PATH=$PATH"
- command -v npm || true
43
- type npm || true
44
- # npm ci && npm run build:assets
+ npm ci && npm run build:assets
45
46
check:
47
needs: [deploy]
0 commit comments