Skip to content

Commit cd2cded

Browse files
chore(main): release push-to-gcs 0.2.1
1 parent 7206c3e commit cd2cded

File tree

3 files changed

+21
-13
lines changed

3 files changed

+21
-13
lines changed

.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"actions/setup-conftest": "1.0.1",
1313
"actions/setup-argo": "1.0.1",
1414
"actions/generate-openapi-clients": "1.0.1",
15-
"actions/push-to-gcs": "0.2.0",
15+
"actions/push-to-gcs": "0.2.1",
1616
"actions/techdocs-rewrite-relative-links": "1.0.1",
1717
"actions/validate-policy-bot-config": "1.1.0",
1818
"actions/trigger-argo-workflow": "1.1.0",

actions/push-to-gcs/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [0.2.1](https://github.com/grafana/shared-workflows/compare/push-to-gcs-v0.2.0...push-to-gcs-v0.2.1) (2025-02-07)
4+
5+
6+
### 🔧 Miscellaneous Chores
7+
8+
* **deps:** update google-github-actions/upload-cloud-storage action to v2.2.2 ([#741](https://github.com/grafana/shared-workflows/issues/741)) ([5f7a536](https://github.com/grafana/shared-workflows/commit/5f7a5361daa274f9a1994893a4c21a8967cf2a24))
9+
* **deps:** update google-github-actions/upload-cloud-storage action to v2.2.2 ([#749](https://github.com/grafana/shared-workflows/issues/749)) ([948bff0](https://github.com/grafana/shared-workflows/commit/948bff0b53f9d51876b8bca2cb1408384b4ce3b5))
10+
311
## [0.2.0](https://github.com/grafana/shared-workflows/compare/push-to-gcs-v0.1.0...push-to-gcs-v0.2.0) (2025-01-28)
412

513

actions/push-to-gcs/README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -32,77 +32,77 @@ jobs:
3232
id: login-to-gcs
3333

3434
# Upload a single file to the bucket root
35-
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0
35+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.1
3636
with:
3737
bucket: ${{ steps.login-to-gcs.outputs.bucket }}
3838
path: file.txt
3939
environment: "dev" # Can be dev/prod (defaults to dev)
4040

4141
# Upload a single file and apply a predefined ACL. See `predefinedAcl` for options.
42-
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0
42+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.1
4343
with:
4444
bucket: ${{ steps.login-to-gcs.outputs.bucket }}
4545
path: file.txt
4646
predefinedAcl: projectPrivate
4747
environment: "dev"
4848

4949
# Here are 3 equivalent statements to upload a single file and its parent directory to the bucket root
50-
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0
50+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.1
5151
with:
5252
bucket: ${{ steps.login-to-gcs.outputs.bucket }}
5353
path: folder/file.txt
54-
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0
54+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.1
5555
with:
5656
bucket: ${{ steps.login-to-gcs.outputs.bucket }}
5757
path: .
5858
glob: "folder/file.txt"
59-
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0
59+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.1
6060
with:
6161
bucket: ${{ steps.login-to-gcs.outputs.bucket }}
6262
path: folder
6363
glob: "file.txt"
6464

6565
# Here are 2 equivalent statements to upload a single file WITHOUT its parent directory to the bucket root
66-
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0
66+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.1
6767
with:
6868
bucket: ${{ steps.login-to-gcs.outputs.bucket }}
6969
path: folder/file.txt
7070
parent: false
71-
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0
71+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.1
7272
with:
7373
bucket: ${{ steps.login-to-gcs.outputs.bucket }}
7474
path: folder
7575
glob: "file.txt"
7676
parent: false
7777

7878
# Here are 2 equivalent statements to upload a directory with all subdirectories
79-
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0
79+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.1
8080
with:
8181
bucket: ${{ steps.login-to-gcs.outputs.bucket }}
8282
path: folder/
83-
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0
83+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.1
8484
with:
8585
bucket: ${{ steps.login-to-gcs.outputs.bucket }}
8686
path: .
8787
glob: "folder/**/*"
8888

8989
# Specify a bucket prefix with `bucket_path`
90-
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0
90+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.1
9191
name: upload-yaml-to-some-path
9292
with:
9393
bucket: ${{ steps.login-to-gcs.outputs.bucket }}
9494
path: file.txt
9595
bucket_path: some-path/
9696

9797
# Upload all files of a type
98-
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0
98+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.1
9999
with:
100100
bucket: ${{ steps.login-to-gcs.outputs.bucket }}
101101
path: folder/
102102
glob: "*.txt"
103103

104104
# upload all files of a type recursively
105-
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0
105+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.1
106106
with:
107107
bucket: ${{ steps.login-to-gcs.outputs.bucket }}
108108
path: folder/

0 commit comments

Comments
 (0)