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