Compare commits

...

3 Commits

Author SHA1 Message Date
6eae2592ed Merge pull request 'Deploy to Scaleway object storage' (#13) from update-ci into main
Reviewed-on: #13
2025-11-19 16:25:22 +00:00
6c8c364399 Merge branch 'main' into update-ci
Some checks failed
Deploy to Scaleway / build-and-deploy (pull_request) Failing after 24s
2025-11-19 16:25:14 +00:00
darnodo
264c7faee1 Deploy to Scaleway object storage
Set S3 signature version to s3v4 and add region.
2025-11-19 17:24:57 +01:00

View File

@@ -37,12 +37,15 @@ jobs:
- name: Deploy to Object Storage - name: Deploy to Object Storage
run: | run: |
aws configure set default.s3.signature_version s3v4
aws s3 sync public/ s3://notebook-arnodo-fr/ \ aws s3 sync public/ s3://notebook-arnodo-fr/ \
--endpoint-url=https://s3.fr-par.scw.cloud \ --endpoint-url=https://s3.fr-par.scw.cloud \
--region=fr-par \
--delete --delete
env: env:
AWS_ACCESS_KEY_ID: ${{ secrets.SCW_ACCESS_KEY }} AWS_ACCESS_KEY_ID: ${{ secrets.SCW_ACCESS_KEY }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.SCW_SECRET_KEY }} AWS_SECRET_ACCESS_KEY: ${{ secrets.SCW_SECRET_KEY }}
AWS_DEFAULT_REGION: fr-par
- name: Install Scaleway CLI (for Purge only) - name: Install Scaleway CLI (for Purge only)
run: | run: |