@@ -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