diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e2009540..47ba2d30 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,9 +2,6 @@ name: Build XOutput env: VERSION: 4.0.0 - SERVER_TARGET: 'net7.0' - GUI_TARGET: 'net7.0-windows' - SONARCLOUD_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }} on: push: @@ -15,6 +12,10 @@ on: jobs: build_net: runs-on: windows-latest + env: + SERVER_TARGET: 'net7.0' + GUI_TARGET: 'net7.0-windows' + SONARCLOUD_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }} steps: - name: Checkout @@ -95,7 +96,7 @@ jobs: - name: Install pnpm run: npm install --global pnpm - name: Install dependencies - run: pnpm -rinstall + run: pnpm -r install - name: Run lint run: pnpm -r run lint - name: Build webapp