Skip to content

refactor: Remade the tool in a better way with some new cool logging … #3

refactor: Remade the tool in a better way with some new cool logging …

refactor: Remade the tool in a better way with some new cool logging … #3

Workflow file for this run

name: .NET Continuous Integration
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build GPU fixer
strategy:
matrix:
kind: ['windows']
include:
- kind: windows
os: windows-latest
target: win-x64
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
shell: bash
run: |
dotnet publish cf-java-gpu-fix/cf-java-gpu-fix.csproj --runtime "${{ matrix.target }}" -c Release -o published --self-contained