Skip to content

Commit

Permalink
GitHub Actions CI, take 2
Browse files Browse the repository at this point in the history
I KNEW IT
I FUCKING KNEW IT WOULDN'T WORK FIRST TRY
  • Loading branch information
Sparronator9999 authored Jul 14, 2024
1 parent e229a99 commit 4cec270
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
strategy:
matrix:
configuration: [Debug, Release]

runs-on: windows-latest

steps:
- name: Checkout Code
uses: actions/checkout@v1
Expand All @@ -27,13 +27,11 @@ jobs:

- name: Build Solution
run: |
msbuild.exe MSIFanControl.sln /nologo /nr:false /p:DeployOnBuild=true /p:platform="Any CPU" /p:configuration="$env:Configuration"
env:
Configuration: ${{ matrix.Configuration }}

msbuild.exe MSIFanControl.sln /nologo /nr:false /p:DeployOnBuild=true /p:platform="Any CPU" /p:configuration="${{ matrix.configuration }}"
- name: Upload Artifact
uses: actions/[email protected]
with:
name: "MSIFanControl-${{ matrix.Configuration }}"
path: "./MSIFanControl.GUI/bin/${{ matrix.Configuration }}/"
name: "MSIFanControl-${{ matrix.configuration }}"
path: "./MSIFanControl.GUI/bin/${{ matrix.configuration }}/"
compression-level: 9

0 comments on commit 4cec270

Please sign in to comment.