dotnet-sdk-ci/action.yml

27 lines
473 B
YAML
Raw Normal View History

2023-10-25 23:21:56 +03:00
name: 'Dotnet sdk build'
description: 'Building arm-gcc projects'
branding:
color: blue
icon: app-indicator
inputs:
command:
description: 'Command'
required: true
default: dotnet --version
runs:
using: 'docker'
image: 'docker://mcr.microsoft.com/dotnet/sdk:6.0'
args:
2023-10-25 23:40:18 +03:00
- dotnet
- publish
- -c
- Release
2023-10-25 23:42:19 +03:00
- -o
2023-10-25 23:40:18 +03:00
- out
- -r
- win-x64
- --self-contained
- false
- /p:EnableWindowsTargeting=true
2023-10-25 23:21:56 +03:00