Fix Scaleway deployment secrets

The deployment workflow was using the wrong secret names for accessing
Scaleway resources. This commit corrects those names to the correct
ones.
This commit is contained in:
darnodo
2025-11-19 17:17:39 +01:00
parent 6b9655f0b1
commit 332c02e544

View File

@@ -41,8 +41,8 @@ jobs:
--endpoint-url=https://s3.fr-par.scw.cloud \ --endpoint-url=https://s3.fr-par.scw.cloud \
--delete --delete
env: env:
AWS_ACCESS_KEY_ID: ${{ secrets.SCW_ACCESS_KEY_ID }} AWS_ACCESS_KEY_ID: ${{ secrets.SCW_ACCESS_KEY }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.SCW_SECRET_ACCESS_KEY }} AWS_SECRET_ACCESS_KEY: ${{ secrets.SCW_SECRET_KEY }}
- name: Install Scaleway CLI (for Purge only) - name: Install Scaleway CLI (for Purge only)
run: | run: |
@@ -52,8 +52,8 @@ jobs:
- name: Purge CDN Cache (optional) - name: Purge CDN Cache (optional)
env: env:
SCW_ACCESS_KEY: ${{ secrets.SCW_ACCESS_KEY_ID }} SCW_ACCESS_KEY: ${{ secrets.SCW_ACCESS_KEY }}
SCW_SECRET_KEY: ${{ secrets.SCW_SECRET_ACCESS_KEY }} SCW_SECRET_KEY: ${{ secrets.SCW_SECRET_KEY }}
SCW_DEFAULT_REGION: fr-par SCW_DEFAULT_REGION: fr-par
run: | run: |
export PATH="$HOME/.scw/bin:$PATH" export PATH="$HOME/.scw/bin:$PATH"