File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -29,19 +29,20 @@ jobs:
2929 - name : Checkout
3030 uses : actions/checkout@v3
3131 - name : Build binary
32- uses : houseabsolute/actions-rust-cross@v0
32+ uses : houseabsolute/actions-rust-cross@v1
3333 with :
3434 command : ${{ matrix.platform.command }}
3535 target : ${{ matrix.platform.target }}
3636 args : " --locked --release"
37+ cross-version : " v0.2.5"
3738 - name : Package as archive
3839 shell : bash
3940 run : |
4041 cd target/${{ matrix.platform.target }}/release
4142 tar czvf ../../../${{ matrix.platform.name }} ${{ matrix.platform.bin }}
4243 cd -
4344 - name : Upload package as artifact
44- uses : actions/upload-artifact@v3
45+ uses : actions/upload-artifact@v4
4546 with :
4647 name : binaries
4748 path : ${{ matrix.platform.name }}
5253 runs-on : ubuntu-latest
5354 steps :
5455 - name : Download artifacts
55- uses : actions/download-artifact@v3
56+ uses : actions/download-artifact@v4
5657 with :
5758 name : binaries
5859 path : ./binaries
You can’t perform that action at this time.
0 commit comments