14
14
upload64 :
15
15
runs-on : windows-latest
16
16
steps :
17
- - uses : actions/checkout@v2
17
+ - uses : actions/checkout@v4
18
18
- name : Build DLL
19
19
run : |
20
20
rustup default nightly
24
24
move target/release/autorun.dll gmsv_autorun_win64.dll
25
25
26
26
- name : Upload DLL
27
- uses : actions/upload-artifact@v2
27
+ uses : actions/upload-artifact@v4
28
28
with :
29
29
name : Windows 64 Bit
30
30
path : gmsv_autorun_win64.dll
33
33
upload86 :
34
34
runs-on : windows-latest
35
35
steps :
36
- - uses : actions/checkout@v2
36
+ - uses : actions/checkout@v4
37
37
- name : Build DLL
38
38
run : |
39
39
rustup default nightly
@@ -44,15 +44,15 @@ jobs:
44
44
move target/i686-pc-windows-msvc/release/autorun.dll gmsv_autorun_win32.dll
45
45
46
46
- name : Upload DLL
47
- uses : actions/upload-artifact@v2
47
+ uses : actions/upload-artifact@v4
48
48
with :
49
49
name : Windows 32 Bit
50
50
path : gmsv_autorun_win32.dll
51
51
52
52
upload64_ubuntu :
53
53
runs-on : ubuntu-latest
54
54
steps :
55
- - uses : actions/checkout@v2
55
+ - uses : actions/checkout@v4
56
56
- name : Build DLL
57
57
run : |
58
58
cd autorun
@@ -61,15 +61,15 @@ jobs:
61
61
mv target/release/libautorun.so gmsv_autorun_linux64.dll
62
62
63
63
- name : Upload DLL
64
- uses : actions/upload-artifact@v2
64
+ uses : actions/upload-artifact@v4
65
65
with :
66
66
name : Linux 64 Bit
67
67
path : gmsv_autorun_linux64.dll
68
68
69
69
upload86_ubuntu :
70
70
runs-on : ubuntu-latest
71
71
steps :
72
- - uses : actions/checkout@v2
72
+ - uses : actions/checkout@v4
73
73
- name : Build DLL
74
74
run : |
75
75
sudo apt-get update && sudo apt-get install gcc-multilib
80
80
mv target/i686-unknown-linux-gnu/release/libautorun.so gmsv_autorun_linux32.dll
81
81
82
82
- name : Upload DLL
83
- uses : actions/upload-artifact@v2
83
+ uses : actions/upload-artifact@v4
84
84
with :
85
85
name : Linux 32 Bit
86
86
path : gmsv_autorun_linux32.dll
0 commit comments