File tree 2 files changed +5
-14
lines changed
2 files changed +5
-14
lines changed Original file line number Diff line number Diff line change 22
22
- uses : actions/upload-artifact@v4
23
23
with :
24
24
name : amd64-linux
25
- path : tmp/runtimes/${{ github.ref_name }}/ *.tar.gz
25
+ path : tmp/runtimes/*.tar.gz
26
26
overwrite : true
27
27
retention-days : 2
28
28
compression-level : 0
39
39
- uses : actions/upload-artifact@v4
40
40
with :
41
41
name : arm64-linux
42
- path : tmp/runtimes/${{ github.ref_name }}/ *.tar.gz
42
+ path : tmp/runtimes/*.tar.gz
43
43
overwrite : true
44
44
retention-days : 2
45
45
compression-level : 0
56
56
- uses : actions/upload-artifact@v4
57
57
with :
58
58
name : amd64-mac
59
- path : tmp/runtimes/${{ github.ref_name }}/ *.tar.gz
59
+ path : tmp/runtimes/*.tar.gz
60
60
overwrite : true
61
61
retention-days : 2
62
62
compression-level : 0
73
73
- uses : actions/upload-artifact@v4
74
74
with :
75
75
name : arm64-mac
76
- path : tmp/runtimes/${{ github.ref_name }}/ *.tar.gz
76
+ path : tmp/runtimes/*.tar.gz
77
77
overwrite : true
78
78
retention-days : 2
79
79
compression-level : 0
95
95
- uses : actions/upload-artifact@v4
96
96
with :
97
97
name : amd64-freebsd
98
- path : tmp/runtimes/${{ github.ref_name }}/ *.tar.gz
98
+ path : tmp/runtimes/*.tar.gz
99
99
overwrite : true
100
100
retention-days : 2
101
101
compression-level : 0
Original file line number Diff line number Diff line change @@ -61,13 +61,6 @@ function install_rust {
61
61
export PATH=" ${CARGO_HOME} /bin:${PATH} "
62
62
}
63
63
64
- function init_rust {
65
- rustup-init --quiet -y --no-modify-path --profile minimal \
66
- --default-toolchain $RUST_VERSION
67
-
68
- export PATH=" ${CARGO_HOME} /bin:${PATH} "
69
- }
70
-
71
64
mkdir -p " ${DIR} "
72
65
73
66
case " $1 " in
@@ -80,11 +73,9 @@ case "$1" in
80
73
build " aarch64-unknown-linux-musl" " arm64-linux-musl"
81
74
;;
82
75
" amd64-mac" )
83
- init_rust
84
76
build " x86_64-apple-darwin" " amd64-mac-native"
85
77
;;
86
78
" arm64-mac" )
87
- init_rust
88
79
build " aarch64-apple-darwin" " arm64-mac-native"
89
80
;;
90
81
" amd64-freebsd" )
You can’t perform that action at this time.
0 commit comments