From 414e228619c5d2340dc3cf87b3cf9a16873367e5 Mon Sep 17 00:00:00 2001 From: Guillaume Grossetie Date: Thu, 22 Feb 2024 11:08:37 +0100 Subject: [PATCH] Use user:password syntax --- .github/workflows/update-data.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update-data.yml b/.github/workflows/update-data.yml index 1aeab13a..2926ac86 100644 --- a/.github/workflows/update-data.yml +++ b/.github/workflows/update-data.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v3 - name: Get export.xml run: | - curl https://export.via-humanis-immobilier.fr/export.xml -u ${{secrets.HTTP_USERNAME}} -p ${{secrets.HTTP_PASSWORD}} -o ./data/export.xml + curl https://export.via-humanis-immobilier.fr/export.xml -u ${{secrets.HTTP_USERNAME}}:${{secrets.HTTP_PASSWORD}} -o ./data/export.xml - uses: actions/setup-node@v3 with: node-version: 20 @@ -25,4 +25,4 @@ jobs: git config --global user.email "ggrossetie@yuzutech.fr" git add public/data/pericles/images git commit -a -m "Update Real Estate Assets" || true - git push \ No newline at end of file + git push