23
23
cargo clippy -- -Dwarnings
24
24
25
25
build-windows :
26
- if : github.ref_type == tag || startsWith(github.ref, 'refs/pull/')
26
+ if : github.ref_type == ' tag' || startsWith(github.ref, 'refs/pull/')
27
27
needs : lint
28
28
runs-on : windows-latest
29
29
name : Release build for Windows
41
41
path : target/release/awsbck.exe
42
42
43
43
build-macos :
44
- if : github.ref_type == tag || startsWith(github.ref, 'refs/pull/')
44
+ if : github.ref_type == ' tag' || startsWith(github.ref, 'refs/pull/')
45
45
needs : lint
46
46
runs-on : macos-latest
47
47
name : Release build for macOS
59
59
path : target/release/awsbck
60
60
61
61
build-linux :
62
- if : github.ref_type == tag || startsWith(github.ref, 'refs/pull/')
62
+ if : github.ref_type == ' tag' || startsWith(github.ref, 'refs/pull/')
63
63
needs : lint
64
64
runs-on : ubuntu-latest
65
65
name : Release build for linux x86_64
81
81
path : target/x86_64-unknown-linux-musl/release/awsbck
82
82
83
83
build-arm :
84
- if : github.ref_type == tag || startsWith(github.ref, 'refs/pull/')
84
+ if : github.ref_type == ' tag' || startsWith(github.ref, 'refs/pull/')
85
85
needs : lint
86
86
name : Release builds for linux ARM
87
87
runs-on : ubuntu-latest
@@ -107,7 +107,7 @@ jobs:
107
107
path : target/${{ matrix.target }}/release/awsbck
108
108
109
109
build-docker :
110
- if : github.ref_type == tag
110
+ if : github.ref_type == ' tag'
111
111
needs : [build-linux, build-arm]
112
112
name : Create docker container
113
113
runs-on : ubuntu-latest
@@ -152,7 +152,7 @@ jobs:
152
152
platforms : linux/amd64,linux/arm64,linux/arm/v7
153
153
154
154
make-release :
155
- if : github.ref_type == tag
155
+ if : github.ref_type == ' tag'
156
156
needs : [build-linux, build-arm, build-windows, build-macos]
157
157
name : Create Github release
158
158
runs-on : ubuntu-latest
0 commit comments