diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 002865483..c772d849e 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.1.1", "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..aecd4ed26 100644 --- a/actions/push-to-gcs/CHANGELOG.md +++ b/actions/push-to-gcs/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.1.1](https://github.com/grafana/shared-workflows/compare/push-to-gcs-v0.1.0...push-to-gcs-v0.1.1) (2024-12-09) + + +### 🔧 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 70f5867a7..d5a0e9943 100644 --- a/actions/push-to-gcs/README.md +++ b/actions/push-to-gcs/README.md @@ -29,14 +29,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.1.1 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.1.1 with: bucket: ${{ steps.login-to-gcs.outputs.bucket }} path: file.txt @@ -44,28 +44,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.1.1 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.1.1 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.1.1 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.1.1 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.1.1 with: bucket: ${{ steps.login-to-gcs.outputs.bucket }} path: folder @@ -73,18 +73,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.1.1 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.1.1 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.1.1 name: upload-yaml-to-some-path with: bucket: ${{ steps.login-to-gcs.outputs.bucket }} @@ -92,14 +92,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.1.1 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.1.1 with: bucket: ${{ steps.login-to-gcs.outputs.bucket }} path: folder/