You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tutorials/cicd-github-action-object-storage-sync/index.mdx
+9-2Lines changed: 9 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,12 +43,11 @@ on:
43
43
44
44
jobs:
45
45
upload:
46
-
environment: prd
47
46
runs-on: ubuntu-latest
48
47
49
48
steps:
50
49
- name: Checkout repository
51
-
uses: actions/checkout@v2
50
+
uses: actions/checkout@v4
52
51
53
52
- name: Set up Node.js
54
53
uses: actions/setup-node@v2
@@ -115,3 +114,11 @@ If your project uses a different build process, replace the `Install dependencie
115
114
- name: Build the project
116
115
run: uv build
117
116
```
117
+
118
+
## Troubleshooting and additional resources
119
+
120
+
- If you encounter issues while using your API key with Scaleway Object Storage, refer to the [dedicated troubleshooting](/object-storage/troubleshooting/api-key-does-not-work/).
121
+
122
+
- Refer to the [official GitHub Actions documentation](https://docs.github.com/en/actions/writing-workflows/quickstart) for more information on how to create and run workflows.
123
+
124
+
- Learn how to better secure your deployment by properly [setting up IAM and Object Storage](/object-storage/api-cli/combining-iam-and-object-storage/)
0 commit comments