setup-dotnet/README.md

72 lines
1.8 KiB
Markdown
Raw Normal View History

2019-07-17 14:45:43 +00:00
# setup-dotnet
2019-06-19 20:22:22 +00:00
2019-08-12 19:11:11 +00:00
<p align="left">
<a href="https://github.com/actions/setup-dotnet"><img alt="GitHub Actions status" src="https://github.com/actions/setup-dotnet/workflows/Main%20workflow/badge.svg"></a>
</p>
2019-07-17 14:45:43 +00:00
This action sets up a dotnet environment for use in actions by:
2019-06-19 20:22:22 +00:00
2019-08-01 20:40:13 +00:00
- optionally downloading and caching a version of dotnet by SDK version and adding to PATH
2019-07-17 14:45:43 +00:00
- registering problem matchers for error output
# Usage
See [action.yml](action.yml)
Basic:
```yaml
2019-07-26 01:27:45 +00:00
steps:
2019-07-23 19:45:43 +00:00
- uses: actions/checkout@master
- uses: actions/setup-dotnet@v1
2019-07-17 14:45:43 +00:00
with:
2019-08-16 14:21:55 +00:00
dotnet-version: '2.2.103' # SDK Version to use.
2019-07-17 14:45:43 +00:00
- run: dotnet build <my project>
```
Matrix Testing:
```yaml
jobs:
build:
2019-08-01 15:05:47 +00:00
runs-on: ubuntu-16.04
2019-07-17 14:45:43 +00:00
strategy:
matrix:
2019-08-16 16:36:18 +00:00
dotnet: [ '2.2.103', '3.0.100-preview8-013656', '4.5.1' ]
2019-07-17 14:45:43 +00:00
name: Dotnet ${{ matrix.dotnet }} sample
2019-07-26 01:27:45 +00:00
steps:
2019-07-23 19:45:43 +00:00
- uses: actions/checkout@master
2019-07-17 14:45:43 +00:00
- name: Setup dotnet
uses: actions/setup-dotnet@v1
2019-07-17 14:45:43 +00:00
with:
2019-08-13 20:05:52 +00:00
dotnet-version: ${{ matrix.dotnet }}
2019-07-17 14:45:43 +00:00
- run: dotnet build <my project>
```
2019-06-19 20:22:22 +00:00
2019-09-09 17:27:23 +00:00
Authentication to GPR:
```yaml
steps:
- uses: actions/checkout@master
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '2.2.103' # SDK Version to use.
source-url: https://nuget.pkg.github.com
env:
NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
- run: dotnet build <my project>
- name: Create the package
run: dotnet pack --configuration Release <my project>
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
- name: Publish the package
run: dotnet nuget push <my project>/bin/Release/*.nupkg
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
```
2019-06-19 20:22:22 +00:00
# License
The scripts and documentation in this project are released under the [MIT License](LICENSE)
# Contributions
Contributions are welcome! See [Contributor's Guide](docs/contributors.md)