Skip to content

Commit ab6f4a1

Browse files
chore(main): release push-to-gcs 0.3.0
1 parent fa7a30f commit ab6f4a1

File tree

3 files changed

+30
-13
lines changed

3 files changed

+30
-13
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"actions/setup-conftest": "1.0.2",
1313
"actions/setup-argo": "1.0.2",
1414
"actions/generate-openapi-clients": "1.0.2",
15-
"actions/push-to-gcs": "0.2.1",
15+
"actions/push-to-gcs": "0.3.0",
1616
"actions/techdocs-rewrite-relative-links": "1.0.2",
1717
"actions/validate-policy-bot-config": "1.1.1",
1818
"actions/trigger-argo-workflow": "1.1.1",

actions/push-to-gcs/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Changelog
22

3+
## [0.3.0](https://github.com/grafana/shared-workflows/compare/push-to-gcs/v0.2.1...push-to-gcs/v0.3.0) (2025-07-29)
4+
5+
6+
### 🎉 Features
7+
8+
* **push-to-gcs:** add `gzip` input ([#1138](https://github.com/grafana/shared-workflows/issues/1138)) ([589381a](https://github.com/grafana/shared-workflows/commit/589381ac26c629055574bff68951d452231cdc22))
9+
10+
11+
### 🐛 Bug Fixes
12+
13+
* remediate latest zizmor findings, fix supplying zizmor config ([#1101](https://github.com/grafana/shared-workflows/issues/1101)) ([712c599](https://github.com/grafana/shared-workflows/commit/712c59975bc0de22124b866153826f04023f18fd))
14+
15+
16+
### 🔧 Miscellaneous Chores
17+
18+
* **deps:** update google-github-actions/upload-cloud-storage action to v2.2.3 ([#1153](https://github.com/grafana/shared-workflows/issues/1153)) ([346eeb2](https://github.com/grafana/shared-workflows/commit/346eeb2f8f5db9a0b7c563c41f7211c46850627e))
19+
320
## [0.2.1](https://github.com/grafana/shared-workflows/compare/push-to-gcs-v0.2.0...push-to-gcs/v0.2.1) (2025-06-04)
421

522

actions/push-to-gcs/README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -34,77 +34,77 @@ jobs:
3434
id: login-to-gcs
3535

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

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

5151
# Here are 3 equivalent statements to upload a single file and its parent directory to the bucket root
52-
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.2.1
52+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.3.0
5353
with:
5454
bucket: ${{ steps.login-to-gcs.outputs.bucket }}
5555
path: folder/file.txt
56-
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.2.1
56+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.3.0
5757
with:
5858
bucket: ${{ steps.login-to-gcs.outputs.bucket }}
5959
path: .
6060
glob: "folder/file.txt"
61-
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.2.1
61+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.3.0
6262
with:
6363
bucket: ${{ steps.login-to-gcs.outputs.bucket }}
6464
path: folder
6565
glob: "file.txt"
6666

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

8080
# Here are 2 equivalent statements to upload a directory with all subdirectories
81-
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.2.1
81+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.3.0
8282
with:
8383
bucket: ${{ steps.login-to-gcs.outputs.bucket }}
8484
path: folder/
85-
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.2.1
85+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.3.0
8686
with:
8787
bucket: ${{ steps.login-to-gcs.outputs.bucket }}
8888
path: .
8989
glob: "folder/**/*"
9090

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

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

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

0 commit comments

Comments
 (0)