Skip to content

Add translation to Grab Frame and Edit Text Window using Windows AI #250

Add translation to Grab Frame and Edit Text Window using Windows AI

Add translation to Grab Frame and Edit Text Window using Windows AI #250

Workflow file for this run

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