We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa6642f commit 798986eCopy full SHA for 798986e
.github/workflows/release.yaml
@@ -28,5 +28,12 @@ jobs:
28
run: npm run build
29
- name: "setup-gcloud"
30
uses: "google-github-actions/setup-gcloud@v2"
31
- - name: "sync-to-bucket"
32
- run: gcloud storage rsync build gs://sourcify-docs-bucket --recursive --delete-unmatched-destination-objects
+ - name: "clear-bucket"
+ run: gsutil -m rm gs://sourcify-docs-bucket/** || true
33
+ - name: "upload-files"
34
+ uses: "google-github-actions/upload-cloud-storage@v2"
35
+ with:
36
+ path: "build"
37
+ destination: "sourcify-docs-bucket"
38
+ parent: false
39
+ glob: "**/*"
0 commit comments