File tree 1 file changed +4
-13
lines changed
1 file changed +4
-13
lines changed Original file line number Diff line number Diff line change @@ -99,21 +99,19 @@ jobs:
99
99
run : |
100
100
if [ "${{ matrix.target }}" == "linux-x64" ]; then
101
101
cargo build --release --target x86_64-unknown-linux-gnu
102
- cp target/x86_64-unknown-linux-gnu/release/vrc-osc-manager ./vrc-osc-manager
103
102
else
104
103
cargo install cross --git https://github.com/rust-embedded/cross
105
104
cross build --release --target x86_64-pc-windows-gnu
106
- cp target/x86_64-pc-windows-gnu/release/vrc-osc-manager.exe ./vrc-osc-manager.exe
107
105
fi
108
106
shell : bash
109
107
110
108
- name : Upload Binary Artifact
111
- uses : actions/upload-artifact@v3
109
+ uses : actions/upload-artifact@v4
112
110
with :
113
111
name : ${{ matrix.target }}-binary
114
112
path : |
115
- ./vrc-osc-manager
116
- ./vrc-osc-manager.exe
113
+ ./target/x86_64-unknown-linux-gnu/release/ vrc-osc-manager
114
+ ./target/x86_64-pc-windows-gnu/release/ vrc-osc-manager.exe
117
115
118
116
semantic-release :
119
117
needs : [ build ]
@@ -132,14 +130,7 @@ jobs:
132
130
- name : Download Binaries
133
131
uses : actions/download-artifact@v4
134
132
with :
135
- name : vrc-osc-manager
136
- path : ./release-artifacts/
137
-
138
- - name : Download Windows Binary
139
- uses : actions/download-artifact@v4
140
- with :
141
- name : vrc-osc-manager.exe
142
- path : ./release-artifacts/
133
+ path : release-artifacts
143
134
144
135
- name : Update version
145
136
run : |
You can’t perform that action at this time.
0 commit comments