Skip to content

Commit

Permalink
Update CI.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
aarani committed Jun 5, 2023
1 parent c1db7d7 commit eb1b676
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/CI.yaml
Expand Up @@ -42,6 +42,20 @@ jobs:
- name: Restore dependencies
run: nuget restore ./DotNetRGS/DotNetRGS.fsproj
- name: Build
run: msbuild ./DotNetRGS/DotNetRGS.fsproj /p:Configuration=Release
- name: Archive the build output
run: |
mkdir buildOutput
msbuild ./DotNetRGS/DotNetRGS.fsproj /p:Configuration=Release;OutputPath=buildOutput/
sudo apt install --yes zip
cd DotNetRGS/bin/Release/net472
zip -r dotnet-rgs-server.zip *
# is this needed?
cd ../../../../
- name: Upload build artifacts
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3.1.2
with:
name: dotnet-rgs-server.zip
path: DotNetRGS/bin/Release/net472/dotnet-rgs-server.zip



0 comments on commit eb1b676

Please sign in to comment.