Skip to content

Commit

Permalink
workflow edit
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander-Sol committed Dec 14, 2024
1 parent 04a194b commit 1cae4b6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Change mzLib version, pack, add source
run: |
cd mzLib;
(Get-Content mzLib.nuspec) -replace "\<version\>(.*)\</version\>", "<version>9.9.9<version\> | Set-Content mzLib.nuspec;
(Get-Content mzLib.nuspec) -replace "\<version\>(.*)\</version\>", "<version>9.9.9<version\>" | Set-Content mzLib.nuspec;
$mzlibMatch = Select-String -Path mzLib.nuspec -Pattern "(?<=\<version\>)(.*)(?=\</version)";
$mzlibVersion = $mzlibMatch.Matches[0].Value;
echo "mzLib version: $mzlibVersion";
Expand Down Expand Up @@ -98,4 +98,7 @@ jobs:
# dotnet restore;
- name: Build MetaMorpheus
run: cd ./MetaMorpheus/MetaMorpheus && dotnet build --no-restore
- name: Test
run: cd ./MetaMorpheus/MetaMorpheus && dotnet test --no-build --verbosity normal


0 comments on commit 1cae4b6

Please sign in to comment.