Skip to content

Commit 81145d5

Browse files
chore(main): release push-to-gcs 0.2.0 (#577)
* chore(main): release push-to-gcs 0.2.0 * Update CHANGELOG.md --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Dimitris Sotirakis <[email protected]>
1 parent 64c35f1 commit 81145d5

File tree

3 files changed

+26
-13
lines changed

3 files changed

+26
-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.0",
1313
"actions/setup-argo": "1.0.0",
1414
"actions/generate-openapi-clients": "1.0.0",
15-
"actions/push-to-gcs": "0.1.0",
15+
"actions/push-to-gcs": "0.2.0",
1616
"actions/techdocs-rewrite-relative-links": "1.0.0",
1717
"actions/validate-policy-bot-config": "1.0.0",
1818
"actions/trigger-argo-workflow": "1.0.0"

actions/push-to-gcs/CHANGELOG.md

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

3+
## [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)
4+
5+
6+
### 🎉 Features
7+
8+
* add `service-account` input to `*-to-gcs` actions ([#720](https://github.com/grafana/shared-workflows/issues/720)) ([b4868e3](https://github.com/grafana/shared-workflows/commit/b4868e355b1e41a3ea54a272aa9970a809ec7ef1))
9+
* **docs:** added EngHub doc links to corresponding actions readmes ([#635](https://github.com/grafana/shared-workflows/issues/635)) ([a7d04c1](https://github.com/grafana/shared-workflows/commit/a7d04c1e98496dbf07f8e44602933af07ba62f9f))
10+
11+
12+
### 🔧 Miscellaneous Chores
13+
14+
* update readme when a new release is available ([#548](https://github.com/grafana/shared-workflows/issues/548)) ([9bf9163](https://github.com/grafana/shared-workflows/commit/9bf9163126c44247bcee6b6b9390eb488f9ead53))
15+
316
## 0.1.0 (2024-11-28)
417

518

actions/push-to-gcs/README.md

Lines changed: 12 additions & 12 deletions
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.1.0
35+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0
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.1.0
42+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0
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.1.0
50+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0
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.1.0
54+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0
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.1.0
59+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0
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.1.0
66+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0
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.1.0
71+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0
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.1.0
79+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0
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.1.0
83+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0
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.1.0
90+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0
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.1.0
98+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0
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.1.0
105+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0
106106
with:
107107
bucket: ${{ steps.login-to-gcs.outputs.bucket }}
108108
path: folder/

0 commit comments

Comments
 (0)