upload-cloud-storage
upload-cloud-storage copied to clipboard
A GitHub Action for uploading files to a Google Cloud Storage (GCS) bucket.
### TL;DR The file paths used in the example don't work for me as written. ### Detailed design ```markdown Now, I'm integrating these steps into an existing Actions file, doing...
### TL;DR When I upload a new version of my website, I want to remove all existing files and replace with my new ones. The current design merges my new...
### TL;DR For each file, we create a resumable metadata file on disk for the client library. However, we never clean up that file. On managed runners, it's fine because...
### TL;DR The current load test can only run 3x in a short period and then we hit quota limits. This makes iterative testing and debugging [extremely painful](https://github.com/google-github-actions/upload-cloud-storage/pull/249#discussion_r846243797), so it's...
Hello, In a GitHub Actions job, after ```google-github-actions/upload-cloud-storage@main``` step, I would like to get the public URL of the uploaded artifact from the previous step. The idea is a job...
I'm looking to upload all static content built-in in one step and upload it into a bucket on the following step. As I'm doing, it doesn't find my content. Any...
### TL;DR This is an action to upload files to cloud storage => couldn't it be a two-way action ? ### Design **Action YAML** It could be a generic `source`...
### TL;DR Running the `google-github-actions/upload-cloud-storage@v0` action produces the following warning: ``` Warning: The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more...
### TL;DR Sometimes My workflow often occurs with a `reason: connect ETIMEDOUT` ERROR as follows. Is there anything wrong with my config? > Error: google-github-actions/upload-cloud-storage failed with: request to >...
### TL;DR I've followed the "uploading a file" example but the file was uploaded to `bucket-name/file-name/file-name`. This example: https://github.com/google-github-actions/upload-cloud-storage/blob/22121cd842b0d185e042e28d969925b538c33d77/README.md#L51-L55 ### Expected behavior The file `build/native/nativeCompile/my-app.exe` is uploaded to `my-bucket/my-app.exe` ###...