diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 810f38e..698391e 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -23,7 +23,7 @@ jobs: uses: actions/upload-artifact@v3 with: name: banker_algorithm_linux_x64_86 - path: target/release/*banker + path: target/release/banker-algorithm build_windows: @@ -40,7 +40,7 @@ jobs: uses: actions/upload-artifact@v3 with: name: banker_algorithm_windows_x64_86 - path: target/release/*banker.exe + path: target/release/banker-algorithm.exe build_macos: @@ -57,7 +57,7 @@ jobs: uses: actions/upload-artifact@v3 with: name: banker_algorithm_macos_x64_86 - path: target/release/*banker + path: target/release/banker-algorithm release: needs: [build_linux, build_windows, build_macos] @@ -68,7 +68,7 @@ jobs: - uses: actions/checkout@v3 - name: Forge a Folder - run: ls -l + run: mkdir Downloads working-directory: /home/runner/work/banker-algorithm/banker-algorithm/ - uses: actions/download-artifact@v3