fix: workflow
This commit is contained in:
parent
9dce931274
commit
c9bab5de5f
2 changed files with 21 additions and 24 deletions
|
@ -60,3 +60,24 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: rust_tcp_file_transfer_macos_x64_86
|
name: rust_tcp_file_transfer_macos_x64_86
|
||||||
path: target/release/*transfer
|
path: target/release/*transfer
|
||||||
|
|
||||||
|
download_then_release:
|
||||||
|
needs: [build_linux, build_windows, build_macos]
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
steps:
|
||||||
|
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: Forge a Folder
|
||||||
|
run: mkdir Downloads
|
||||||
|
working-directory: /home/runner/work/rust-tcp-file-transfer/rust-tcp-file-transfer/
|
||||||
|
|
||||||
|
- uses: actions/download-artifact@v3
|
||||||
|
name: Download
|
||||||
|
with:
|
||||||
|
path: Downloads/
|
||||||
|
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: Display Downloads
|
||||||
|
run: ls -R
|
24
.github/workflows/rust_release.yml
vendored
24
.github/workflows/rust_release.yml
vendored
|
@ -1,24 +0,0 @@
|
||||||
name: Rust Release
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: [ "main" ]
|
|
||||||
jobs:
|
|
||||||
Download_then_Release:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
steps:
|
|
||||||
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
- name: Forge a Folder
|
|
||||||
run: mkdir Downloads
|
|
||||||
working-directory: /home/runner/work/rust-tcp-file-transfer/rust-tcp-file-transfer/
|
|
||||||
|
|
||||||
- uses: actions/download-artifact@v3
|
|
||||||
name: Download
|
|
||||||
with:
|
|
||||||
path: Downloads/
|
|
||||||
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
- name: Display Downloads
|
|
||||||
run: ls -R
|
|
Loading…
Add table
Add a link
Reference in a new issue