Dashboard enhancement and bug fixes #106
Workflow file for this run
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: Build | |
env: | |
DOTNET_CLI_TELEMETRY_OPTOUT: 1 | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 | |
DOTNET_NOLOGO: 1 | |
NUGET_AUTH_TOKEN: ${{ secrets.PACKAGE_REGISTRY_TOKEN }} | |
on: | |
push: | |
branches: '*' | |
pull_request: | |
branches: 'main' | |
defaults: | |
run: | |
working-directory: src | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Setup | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 7.0.x | |
source-url: https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json | |
- name: Restore | |
run: dotnet restore | |
- name: Pack | |
run: dotnet pack --no-restore -c:Release | |
- name: Push | |
# Create package only from main branch | |
# if: github.ref == 'refs/heads/main' | |
# Create packages from every branch except pull requests | |
if: github.event_name == 'push' | |
run: dotnet nuget push "../bin/Release/*.nupkg" -k ${{ secrets.PACKAGE_REGISTRY_TOKEN }} -s https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json --skip-duplicate |