Skip to content

Commit

Permalink
Merge pull request #44 from jczaja/jczaja/windows-publish
Browse files Browse the repository at this point in the history
windows artifacts archiving
  • Loading branch information
jczaja authored Jun 8, 2022
2 parents b5f702e + 346feed commit 231aa73
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/building.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
args: --all -- --check

build_windows:
name: etradeTaxReturnHelper windows build
name: etradeTaxReturnHelper windows artifacts publish
runs-on: windows-2019
strategy:
matrix:
Expand All @@ -31,7 +31,12 @@ jobs:
- uses: actions/checkout@v3
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- name: Build
run: cargo build --verbose
run: mkdir etradeTaxReturnHelper && cargo build --release && dir && dir target\release && xcopy target\release\etradeTaxReturnHelper.exe etradeTaxReturnHelper /E /C /H /R /K /O /Y
- name: Archiving
uses: actions/upload-artifact@v2
with:
name: assets-for-download
path: etradeTaxReturnHelper

build_and_test:
name: etradeTaxReturnHelper building
Expand Down

0 comments on commit 231aa73

Please sign in to comment.