Update application.yml #166
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
name: Application | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- '**' | |
pull_request: | |
env: | |
app_release: false | |
app_conf: Release | |
nuget_url: https://api.nuget.org/v3/index.json | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 6.0.x | |
- uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 8.0.x | |
- name: Get version | |
run: echo "app_version=`git describe --tags`" >> $GITHUB_ENV | |
- name: Get release status | |
run: echo "app_release=`(git describe --tags --exact-match>/dev/null 2>&1 && echo true) || echo false`" >> $GITHUB_ENV | |
- name: Status | |
run: echo "Release=$app_release, version=$app_version" | |
- name: Compile | |
run: dotnet build -c $app_conf -p:Version=$app_version -p:InformationalVersion="$app_version:$GITHUB_SHA" | |
- name: Test net6 | |
run: dotnet test -c $app_conf --no-build -f net6.0 | |
- name: Test net8 | |
run: dotnet test -c $app_conf --no-build -f net8.0 | |
- name: Pack | |
working-directory: nuget | |
run: dotnet pack -c $app_conf --no-build -o `pwd`/artifacts -p:Version=$app_version -p:CommitSHA=$GITHUB_SHA | |
- uses: actions/[email protected] | |
with: | |
name: artifacts | |
path: ./nuget/artifacts | |
- name: Publish | |
if: env.app_release == 'true' | |
env: | |
NUGETKEY: ${{ secrets.NUGET_KEY }} | |
working-directory: nuget/artifacts | |
run: dotnet nuget push ./*.nupkg -s $nuget_url -k $NUGETKEY |