Skip to content

feat(ui): implement AddTaskForm modal for task creation #86

feat(ui): implement AddTaskForm modal for task creation

feat(ui): implement AddTaskForm modal for task creation #86

Workflow file for this run

name: OpsFlow CI Pipeline
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-dotnet@v4
with:
dotnet-version: 10.0.101
- uses: actions/cache@v4
with:
path: |
~/.nuget/packages
**/obj/project.assets.json
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}
restore-keys: |
${{ runner.os }}-nuget-
- run: dotnet restore
- run: dotnet build --no-restore --configuration Release
- uses: actions/upload-artifact@v4
with:
name: OpsFlow-Release
path: |
**/bin/Release/**/OpsFlow.exe
**/bin/Release/**/*.dll
**/bin/Release/**/*.config