Skip to content

Commit

Permalink
Merge branch 'develop' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverbooth committed Dec 26, 2022
2 parents e2902bc + dc8e24d commit 81f68a8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,20 +30,23 @@ jobs:
dotnet publish -o out -r linux-x64 -c Release -p:VersionSuffix='prerelease' -p:BuildNumber=${{ github.run_number }} --self-contained
cd out
zip ../lc-linux-x64.zip ./lc
cd ..
rm ./out/lc
- name: Publish MacOS release
run: |
dotnet publish -o out -r osx-x64 -c Release -p:VersionSuffix='prerelease' -p:BuildNumber=${{ github.run_number }} --self-contained
cd out
zip ../lc-macos-x64.zip ./lc
cd ..
rm ./out/lc
- name: Publish Windows release
run: |
dotnet publish -o out -r win-x64 -c Release -p:VersionSuffix='prerelease' -p:BuildNumber=${{ github.run_number }} --self-contained
cd out
zip ../lc-win-x64.zip ./lc.exe
cd ..
rm ./out/lc.exe
- name: Create Release
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,20 +30,23 @@ jobs:
dotnet publish -o out -r linux-x64 -c Release --self-contained
cd out
zip ../lc-linux-x64.zip ./lc
cd ..
rm ./out/lc
- name: Publish MacOS release
run: |
dotnet publish -o out -r osx-x64 -c Release --self-contained
cd out
zip ../lc-macos-x64.zip ./lc
cd ..
rm ./out/lc
- name: Publish Windows release
run: |
dotnet publish -o out -r win-x64 -c Release --self-contained
cd out
zip ../lc-win-x64.zip ./lc.exe
cd ..
rm ./out/lc.exe
- name: Create Release
Expand Down

0 comments on commit 81f68a8

Please sign in to comment.