File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -28,14 +28,12 @@ jobs:
28
28
- name : Install cargo-release
29
29
run : cargo install cargo-release
30
30
31
- - name : Build and release
31
+ - name : Build
32
32
env :
33
- CARGO_REGISTRY_TOKEN : ${{ secrets.CARGO_REGISTRY_TOKEN }}
34
33
APILAYER_KEY : ${{ secrets.APILAYER_KEY }}
35
34
run : |
36
35
cd ua_generator
37
36
BUILD_ENABLED=1 cargo build
38
- cargo release minor --no-confirm
39
37
40
38
- uses : EndBug/add-and-commit@v9
41
39
with :
46
44
add : " ua_generator/Cargo.toml ua_generator/Cargo.lock"
47
45
pull : " --rebase --autostash"
48
46
47
+ - name : Release
48
+ env :
49
+ CARGO_REGISTRY_TOKEN : ${{ secrets.CARGO_REGISTRY_TOKEN }}
50
+ APILAYER_KEY : ${{ secrets.APILAYER_KEY }}
51
+ run : |
52
+ cd ua_generator
53
+ cargo release minor --no-confirm
54
+
49
55
- name : Push tags
50
56
run : git push --follow-tags
You can’t perform that action at this time.
0 commit comments