28 lines
436 B
Markdown
28 lines
436 B
Markdown
# dotnet-sdk-ci
|
|
|
|
Building dotnet projects
|
|
|
|
## Usage:
|
|
|
|
```
|
|
|
|
jobs:
|
|
build:
|
|
name: Building project
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: make
|
|
uses: embedd-actions/dotnet-sdk-ci@v6.0
|
|
with:
|
|
command: dotnet publish -c Release -o out -r win-x64 --self-contained false /p:EnableWindowsTargeting=true
|
|
|
|
```
|
|
|
|
## List of available tags
|
|
|
|
```
|
|
v6.0
|
|
```
|