Skip to content

Commit 64a651f

Browse files
chore(main): release push-to-gcs 0.2.1
1 parent 68b38bb commit 64a651f

File tree

3 files changed

+27
-13
lines changed

3 files changed

+27
-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

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
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-03-10)
4+
5+
6+
### 🐛 Bug Fixes
7+
8+
* ensure every action disables git credential persistence ([#821](https://github.com/grafana/shared-workflows/issues/821)) ([31ebf3f](https://github.com/grafana/shared-workflows/commit/31ebf3f8e5d0f8709e6ec4ef73b39dd2bd08f959))
9+
10+
11+
### 🔧 Miscellaneous Chores
12+
13+
* **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))
14+
* **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))
15+
* **main:** release push-to-gar-docker 0.3.0 ([#794](https://github.com/grafana/shared-workflows/issues/794)) ([a7bc536](https://github.com/grafana/shared-workflows/commit/a7bc5367c4a91c389526d58839d8f6224dba4dcc))
16+
317
## [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)
418

519

actions/push-to-gcs/README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -35,77 +35,77 @@ jobs:
3535
id: login-to-gcs
3636

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

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

5252
# Here are 3 equivalent statements to upload a single file and its parent directory to the bucket root
53-
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0
53+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.1
5454
with:
5555
bucket: ${{ steps.login-to-gcs.outputs.bucket }}
5656
path: folder/file.txt
57-
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0
57+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.1
5858
with:
5959
bucket: ${{ steps.login-to-gcs.outputs.bucket }}
6060
path: .
6161
glob: "folder/file.txt"
62-
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0
62+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.1
6363
with:
6464
bucket: ${{ steps.login-to-gcs.outputs.bucket }}
6565
path: folder
6666
glob: "file.txt"
6767

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

8181
# Here are 2 equivalent statements to upload a directory with all subdirectories
82-
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0
82+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.1
8383
with:
8484
bucket: ${{ steps.login-to-gcs.outputs.bucket }}
8585
path: folder/
86-
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0
86+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.1
8787
with:
8888
bucket: ${{ steps.login-to-gcs.outputs.bucket }}
8989
path: .
9090
glob: "folder/**/*"
9191

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

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

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

0 commit comments

Comments
 (0)