build: fix upload

This commit is contained in:
Ahmet Kaan GÜMÜŞ 2024-01-15 00:23:34 +03:00
parent d80fd16adc
commit ad99a5663d

View file

@ -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