@@ -32,77 +32,77 @@ jobs:
32
32
id : login-to-gcs
33
33
34
34
# Upload a single file to the bucket root
35
- - uses : grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0
35
+ - uses : grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.1
36
36
with :
37
37
bucket : ${{ steps.login-to-gcs.outputs.bucket }}
38
38
path : file.txt
39
39
environment : " dev" # Can be dev/prod (defaults to dev)
40
40
41
41
# 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.2.0
42
+ - uses : grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.1
43
43
with :
44
44
bucket : ${{ steps.login-to-gcs.outputs.bucket }}
45
45
path : file.txt
46
46
predefinedAcl : projectPrivate
47
47
environment : " dev"
48
48
49
49
# 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.2.0
50
+ - uses : grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.1
51
51
with :
52
52
bucket : ${{ steps.login-to-gcs.outputs.bucket }}
53
53
path : folder/file.txt
54
- - uses : grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0
54
+ - uses : grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.1
55
55
with :
56
56
bucket : ${{ steps.login-to-gcs.outputs.bucket }}
57
57
path : .
58
58
glob : " folder/file.txt"
59
- - uses : grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0
59
+ - uses : grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.1
60
60
with :
61
61
bucket : ${{ steps.login-to-gcs.outputs.bucket }}
62
62
path : folder
63
63
glob : " file.txt"
64
64
65
65
# 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.2.0
66
+ - uses : grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.1
67
67
with :
68
68
bucket : ${{ steps.login-to-gcs.outputs.bucket }}
69
69
path : folder/file.txt
70
70
parent : false
71
- - uses : grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0
71
+ - uses : grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.1
72
72
with :
73
73
bucket : ${{ steps.login-to-gcs.outputs.bucket }}
74
74
path : folder
75
75
glob : " file.txt"
76
76
parent : false
77
77
78
78
# 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.2.0
79
+ - uses : grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.1
80
80
with :
81
81
bucket : ${{ steps.login-to-gcs.outputs.bucket }}
82
82
path : folder/
83
- - uses : grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0
83
+ - uses : grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.1
84
84
with :
85
85
bucket : ${{ steps.login-to-gcs.outputs.bucket }}
86
86
path : .
87
87
glob : " folder/**/*"
88
88
89
89
# Specify a bucket prefix with `bucket_path`
90
- - uses : grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0
90
+ - uses : grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.1
91
91
name : upload-yaml-to-some-path
92
92
with :
93
93
bucket : ${{ steps.login-to-gcs.outputs.bucket }}
94
94
path : file.txt
95
95
bucket_path : some-path/
96
96
97
97
# Upload all files of a type
98
- - uses : grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0
98
+ - uses : grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.1
99
99
with :
100
100
bucket : ${{ steps.login-to-gcs.outputs.bucket }}
101
101
path : folder/
102
102
glob : " *.txt"
103
103
104
104
# upload all files of a type recursively
105
- - uses : grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.0
105
+ - uses : grafana/shared-workflows/actions/push-to-gcs@push-to-gcs-v0.2.1
106
106
with :
107
107
bucket : ${{ steps.login-to-gcs.outputs.bucket }}
108
108
path : folder/
0 commit comments