Skip to content

catch Okay window count from FirstRun #58

catch Okay window count from FirstRun

catch Okay window count from FirstRun #58

Workflow file for this run

name: "Build Text Grab"
on:
push:
branches: [dev]
env:
PROJECT_PATH: "Text-Grab/Text-Grab.csproj"
TEST_PATH: "Tests/Tests.csproj"
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.0.x"
- name: Install dependencies
run: dotnet restore ${{ env.PROJECT_PATH }}
- name: Build
run: dotnet build ${{ env.PROJECT_PATH }}
- name: Test
run: dotnet test ${{ env.TEST_PATH }}
- name: Build for release and Publish
run: dotnet publish ${{ env.PROJECT_PATH }} -c Release --self-contained -r win-x64 -p:PublishSingleFile=true -o publish
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: Text-Grab
path: .\publish