From 0a7c314a7d95c7c4b67fd83ddd792bc4a7e87b68 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 17 Dec 2024 06:54:06 +0000 Subject: [PATCH] chore(main): release push-to-gcs 0.2.0 --- .release-please-manifest.json | 2 +- actions/push-to-gcs/CHANGELOG.md | 12 ++++++++++++ actions/push-to-gcs/README.md | 24 ++++++++++++------------ 3 files changed, 25 insertions(+), 13 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 002865483..6510a5bc2 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -12,7 +12,7 @@ "actions/setup-conftest": "1.0.0", "actions/setup-argo": "1.0.0", "actions/generate-openapi-clients": "1.0.0", - "actions/push-to-gcs": "0.1.0", + "actions/push-to-gcs": "0.2.0", "actions/techdocs-rewrite-relative-links": "1.0.0", "actions/validate-policy-bot-config": "1.0.0", "actions/trigger-argo-workflow": "1.0.0" diff --git a/actions/push-to-gcs/CHANGELOG.md b/actions/push-to-gcs/CHANGELOG.md index d46da1008..8c3d63083 100644 --- a/actions/push-to-gcs/CHANGELOG.md +++ b/actions/push-to-gcs/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [0.2.0](https://github.com/grafana/shared-workflows/compare/push-to-gcs-v0.1.0...push-to-gcs-v0.2.0) (2024-12-17) + + +### 🎉 Features + +* **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)) + + +### 🔧 Miscellaneous Chores + +* 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)) + ## 0.1.0 (2024-11-28) diff --git a/actions/push-to-gcs/README.md b/actions/push-to-gcs/README.md index 6ed19b88e..5d7b3b6f0 100644 --- a/actions/push-to-gcs/README.md +++ b/actions/push-to-gcs/README.md @@ -32,14 +32,14 @@ jobs: id: login-to-gcs # Upload a single file to the bucket root - - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.1.0 + - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0 with: bucket: ${{ steps.login-to-gcs.outputs.bucket }} path: file.txt environment: "dev" # Can be dev/prod (defaults to dev) # Upload a single file and apply a predefined ACL. See `predefinedAcl` for options. - - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.1.0 + - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0 with: bucket: ${{ steps.login-to-gcs.outputs.bucket }} path: file.txt @@ -47,28 +47,28 @@ jobs: environment: "dev" # Here are 3 equivalent statements to upload a single file and its parent directory to the bucket root - - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.1.0 + - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0 with: bucket: ${{ steps.login-to-gcs.outputs.bucket }} path: folder/file.txt - - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.1.0 + - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0 with: bucket: ${{ steps.login-to-gcs.outputs.bucket }} path: . glob: "folder/file.txt" - - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.1.0 + - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0 with: bucket: ${{ steps.login-to-gcs.outputs.bucket }} path: folder glob: "file.txt" # Here are 2 equivalent statements to upload a single file WITHOUT its parent directory to the bucket root - - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.1.0 + - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0 with: bucket: ${{ steps.login-to-gcs.outputs.bucket }} path: folder/file.txt parent: false - - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.1.0 + - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0 with: bucket: ${{ steps.login-to-gcs.outputs.bucket }} path: folder @@ -76,18 +76,18 @@ jobs: parent: false # Here are 2 equivalent statements to upload a directory with all subdirectories - - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.1.0 + - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0 with: bucket: ${{ steps.login-to-gcs.outputs.bucket }} path: folder/ - - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.1.0 + - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0 with: bucket: ${{ steps.login-to-gcs.outputs.bucket }} path: . glob: "folder/**/*" # Specify a bucket prefix with `bucket_path` - - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.1.0 + - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0 name: upload-yaml-to-some-path with: bucket: ${{ steps.login-to-gcs.outputs.bucket }} @@ -95,14 +95,14 @@ jobs: bucket_path: some-path/ # Upload all files of a type - - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.1.0 + - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0 with: bucket: ${{ steps.login-to-gcs.outputs.bucket }} path: folder/ glob: "*.txt" # upload all files of a type recursively - - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.1.0 + - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0 with: bucket: ${{ steps.login-to-gcs.outputs.bucket }} path: folder/