Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
Tahinli committed Mar 15, 2024
1 parent ef04a4e commit 9add6bf
Showing 1 changed file with 14 additions and 15 deletions.
29 changes: 14 additions & 15 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,22 +26,22 @@ jobs:
name: $(GENERIC_BINARY_NAME)-linux-x64_86
path: target/release/*transfer

build_windows:
# build_windows:

runs-on: windows-latest
# runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --release --verbose
- name: Run tests
run: cargo test --verbose
# steps:
# - uses: actions/checkout@v3
# - name: Build
# run: cargo build --release --verbose
# - name: Run tests
# run: cargo test --verbose

- name: Upload Windows Binary
uses: actions/upload-artifact@v3
with:
name: $(GENERIC_BINARY_NAME)-windows-x64_86
path: target/release/*transfer.exe
# - name: Upload Windows Binary
# uses: actions/upload-artifact@v3
# with:
# name: $(GENERIC_BINARY_NAME)-windows-x64_86
# path: target/release/*transfer.exe

build_macos:

Expand All @@ -62,8 +62,6 @@ jobs:

release:
needs: [build_linux, build_windows, build_macos]
env:
GENERIC_BINARY_NAME: rust-tcp-file-transfer
runs-on: ubuntu-latest
permissions:
contents: write
Expand All @@ -72,6 +70,7 @@ jobs:
- uses: actions/checkout@v3
- name: Forge a Folder
run: |
echo "$GENERIC_BINARY_NAME"
tree
mkdir Downloads
working-directory: /home/runner/work/$(GENERIC_BINARY_NAME)/$(GENERIC_BINARY_NAME)/
Expand Down

0 comments on commit 9add6bf

Please sign in to comment.