@@ -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.2.2
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.2.2
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.2.2
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.2.2
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.2.2
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.2.2
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.2.2
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.2.2
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.2.2
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.2.2
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.2.2
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.2.2
108108 with :
109109 bucket : ${{ steps.login-to-gcs.outputs.bucket }}
110110 path : folder/
0 commit comments