We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0bd76fb commit 4e4b785Copy full SHA for 4e4b785
1 file changed
.github/workflows/ci-cd.yml
@@ -85,6 +85,11 @@ jobs:
85
with:
86
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
87
88
+ # Récupérer l'IP publique du runner GitHub
89
+ - name: Get runner's public IP
90
+ id: ip
91
+ uses: haythem/public-ip@v1.3
92
+
93
- name: Deploy - git pull, composer install, drush update
94
env:
95
SSH_HOST: ${{ secrets.SSH_HOST }}
@@ -99,7 +104,7 @@ jobs:
99
104
git fetch origin deploy
100
105
git reset --hard origin/deploy
101
106
export COMPOSER_MEMORY_LIMIT=-1
102
- "$PHP_BIN" -d memory_limit=-1 \$(which composer) install --no-dev --optimize-autoloader --no-progress --no-interaction
107
+ \$(which composer) install --no-dev --optimize-autoloader --no-progress --no-interaction
103
108
"$PHP_BIN" vendor/bin/drush updatedb -y
109
"$PHP_BIN" vendor/bin/drush config:import -y
110
"$PHP_BIN" vendor/bin/drush cache:rebuild
0 commit comments