Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .agent/skills/update-pubsub-emulator/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ description: How to update the Pub/Sub emulator
4. **Upload to Storage**
Upload the zip file to the Firebase preview bucket:
```bash
gsutil cp pubsub-emulator-<version>.zip gs://firebase-preview-drop/emulator/
gcloud storage cp pubsub-emulator-<version>.zip gs://firebase-preview-drop/emulator/
```
Make the file publicly readable if necessary (usually the bucket permissions handle this, or use `gsutil acl ch -u AllUsers:R ...`).
Make the file publicly readable if necessary (usually the bucket permissions handle this, or use `gcloud storage objects update ... --add-acl-grant=entity=allUsers,role=READER`).
Comment thread
gurusai-voleti marked this conversation as resolved.

**Note:** For the version 0.8.27 update, this step was already done.

Expand Down
2 changes: 1 addition & 1 deletion standalone/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"scripts": {
"fmt": "prettier --write *.js",
"pkg": "pkg -c package.json firepit.js --out-path dist/ && shx chmod +x dist/firepit-*",
"ship": "gsutil -m cp dist/* gs://fir-tools-builds/firepit/ && gsutil iam ch allUsers:objectViewer gs://fir-tools-builds"
"ship": "gcloud storage cp dist/* gs://fir-tools-builds/firepit/ && gcloud storage buckets add-iam-policy-binding gs://fir-tools-builds --member=allUsers --role=objectViewer"
Comment thread
gurusai-voleti marked this conversation as resolved.
},
"author": "",
"license": "MIT",
Expand Down