Skip to content
This repository has been archived by the owner on May 8, 2024. It is now read-only.

Commit

Permalink
Merge pull request #35 from Backseating-Committee-2k/fix-cicd-really
Browse files Browse the repository at this point in the history
Fix cicd really
  • Loading branch information
DasLixou authored May 29, 2022
2 parents ce1cda2 + 53b3f59 commit eadccaf
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,6 @@ jobs:
target: osx-x64

runs-on: ${{ matrix.os }} # For a list of available runner types, refer to https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on

env:
Solution_Name: Source/Backlang-Compiler.sln # Replace with your solution name, i.e. MyWpfApp.sln.
Test_Project_Path: Source/TestProject1/TestProject1.csproj # Replace with the path to your test project, i.e. MyWpfApp.Tests\MyWpfApp.Tests.csproj.

steps:
- name: Checkout
Expand All @@ -48,7 +44,7 @@ jobs:
release_name="App-$tag-${{ matrix.target }}"
# Build everything
dotnet publish Source/Backlang-Compiler.sln --runtime "${{ matrix.target }}" -c Release -o "$release_name"
dotnet publish Source/Backlang-Compiler/Backlang-Compiler.csproj --runtime "${{ matrix.target }}" -c Release -o "$release_name"
# Pack files
if [ "${{ matrix.target }}" == "win-x64" ]; then
Expand Down

0 comments on commit eadccaf

Please sign in to comment.