We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96e85f7 commit 39ff01eCopy full SHA for 39ff01e
1 file changed
.github/workflows/create-artifacts.yml
@@ -19,6 +19,7 @@ jobs:
19
R2_BUCKET: ${{ secrets.R2_BUCKET }}
20
R2_ENDPOINT: ${{ secrets.R2_ENDPOINT }}
21
run: |
22
+ env | grep R2_
23
pip install awscli
24
aws configure set aws_access_key_id "$AWS_ACCESS_KEY_ID"
25
aws configure set aws_secret_access_key "$AWS_SECRET_ACCESS_KEY"
@@ -27,6 +28,4 @@ jobs:
27
28
for dir in $(find . -mindepth 1 -maxdepth 1 -type d ! -name '.git'); do
29
aws s3 cp "$dir" "s3://$R2_BUCKET/${dir#./}" --recursive --exclude "*.zip"
30
done
- - name: Debug env
31
- run: |
32
- env | grep R2_
+
0 commit comments