-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3aab9b9
commit af73d55
Showing
1 changed file
with
12 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,6 +38,11 @@ jobs: | |
cd Rust/Driver | ||
cargo build | ||
cargo build --release | ||
- name: Build PDBReSym | ||
run: | | ||
cd Rust/PDBReSym | ||
cargo build | ||
cargo build --release | ||
- name: Zip Build | ||
run: | | ||
cd Rust/Driver | ||
|
@@ -63,8 +68,14 @@ jobs: | |
cd ../ | ||
Compress-Archive -DestinationPath STrace.zip -Path Rust, C, install -CompressionLevel Fastest | ||
- name: Release | ||
Compress-Archive -DestinationPath PDBReSym.zip -Path Rust\PDBReSym\target\release\PDBReSym.exe -CompressionLevel Fastest | ||
- name: Release STrace | ||
uses: softprops/[email protected] | ||
if: startsWith(github.ref, 'refs/tags/') | ||
with: | ||
files: STrace.zip | ||
- name: Release PDBReSym | ||
uses: softprops/[email protected] | ||
if: startsWith(github.ref, 'refs/tags/') | ||
with: | ||
files: PDBReSym.zip |