Skip to content

Create build.yml

Create build.yml #11

Workflow file for this run

name: Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
global-json-file: global.json
- name: Restore Dependencies
run: dotnet restore
- name: Build
shell: pwsh
run: |
$outputPath = & dotnet publish --getProperty:PublishDir
cd $outputPath
ren "ChatPrisma.exe" "Chat Prisma.exe"
echo "output_path=$outputPath" >> "$GITHUB_ENV"
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: App
path: ${{ env.output_path }}
if-no-files-found: error