Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
setup-dotnet/README.md
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
157 lines (136 sloc)
4.88 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# setup-dotnet | |
[](https://github.com/actions/setup-dotnet) | |
This action sets up a [.NET CLI](https://github.com/dotnet/sdk) environment for use in actions by: | |
- optionally downloading and caching a version(s) of dotnet by SDK version(s) and adding to PATH | |
- registering problem matchers for error output | |
- setting up authentication to private package sources like GitHub Packages | |
Please Note: GitHub hosted runners have some versions of the .NET SDK | |
preinstalled. Installed versions are subject to change. Please refer to the | |
documentation | |
[software installed on github hosted runners](https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-software) | |
for .NET SDK versions that are currently available. | |
# Usage | |
See [action.yml](action.yml) | |
Basic: | |
```yaml | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-dotnet@v2 | |
with: | |
dotnet-version: '3.1.x' # SDK Version to use; x will use the latest version of the 3.1 channel | |
- run: dotnet build <my project> | |
``` | |
Multiple versions: | |
> Note: In case multiple versions are installed, the latest .NET version will be used by default unless another version is specified in the `global.json` file. | |
```yml | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v2 | |
with: | |
dotnet-version: | | |
3.1.x | |
5.0.x | |
- run: dotnet build <my project> | |
``` | |
Preview version: | |
```yml | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-dotnet@v2 | |
with: | |
dotnet-version: '6.0.x' | |
include-prerelease: true | |
- run: dotnet build <my project> | |
``` | |
Matrix Testing: | |
```yaml | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
dotnet: [ '2.1.x', '3.1.x', '5.0.x' ] | |
name: Dotnet ${{ matrix.dotnet }} sample | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v2 | |
with: | |
dotnet-version: ${{ matrix.dotnet }} | |
- run: dotnet build <my project> | |
``` | |
Side by Side Testing: | |
```yaml | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Dotnet Side by Side testing sample | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v2 | |
with: | |
dotnet-version: '2.1.x' | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v2 | |
with: | |
dotnet-version: '3.1.x' | |
- run: dotnet build <my project> | |
- run: dotnet test <my project> | |
``` | |
Authentication for nuget feeds: | |
```yaml | |
steps: | |
- uses: actions/checkout@v3 | |
# Authenticates packages to push to GPR | |
- uses: actions/setup-dotnet@v2 | |
with: | |
dotnet-version: '3.1.x' # SDK Version to use. | |
source-url: https://nuget.pkg.github.com/<owner>/index.json | |
env: | |
NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
- run: dotnet build <my project> | |
- name: Create the package | |
run: dotnet pack --configuration Release <my project> | |
- name: Publish the package to GPR | |
run: dotnet nuget push <my project>/bin/Release/*.nupkg | |
# Authenticates packages to push to Azure Artifacts | |
- uses: actions/setup-dotnet@v2 | |
with: | |
source-url: https://pkgs.dev.azure.com/<your-organization>/_packaging/<your-feed-name>/nuget/v3/index.json | |
env: | |
NUGET_AUTH_TOKEN: ${{secrets.AZURE_DEVOPS_PAT}} # Note, create a secret with this name in Settings | |
- name: Publish the package to Azure Artifacts | |
run: dotnet nuget push <my project>/bin/Release/*.nupkg | |
# Authenticates packages to push to nuget.org. | |
# It's only the way to push a package to nuget.org feed for macOS/Linux machines due to API key config store limitations. | |
- uses: actions/setup-dotnet@v2 | |
with: | |
dotnet-version: 3.1.x | |
- name: Publish the package to nuget.org | |
run: dotnet nuget push */bin/Release/*.nupkg -k $NUGET_AUTH_TOKEN -s https://api.nuget.org/v3/index.json | |
env: | |
NUGET_AUTH_TOKEN: ${{ secrets.NUGET_TOKEN }} | |
``` | |
## Environment Variables to use with dotnet | |
Some environment variables may be necessary for your particular case or to improve logging. Some examples are listed below, but the full list with complete details can be found here: https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-environment-variables | |
- DOTNET_NOLOGO - removes logo and telemetry message from first run of dotnet cli (default: false) | |
- DOTNET_CLI_TELEMETRY_OPTOUT - opt-out of telemetry being sent to Microsoft (default: false) | |
- DOTNET_MULTILEVEL_LOOKUP - configures whether the global install location is used as a fall-back (default: true) | |
Example usage: | |
```yaml | |
build: | |
runs-on: ubuntu-latest | |
env: | |
DOTNET_NOLOGO: true | |
steps: | |
- uses: actions/checkout@main | |
- uses: actions/setup-dotnet@v2 | |
with: | |
dotnet-version: '3.1.x' # SDK Version to use. | |
``` | |
# 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) |