Use auto properties and misc code cleanup (#398) #255
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: Publish preview to GitHub registry | |
# ==== NOTE: do not rename this yml file or the $GITHUB_RUN_NUMBER will be reset ==== | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
- v8 | |
paths: | |
- src/** | |
- .github/workflows/** | |
env: | |
DOTNET_NOLOGO: true | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
jobs: | |
pack: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
with: | |
show-progress: false | |
- name: Setup .NET SDK | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
source-url: https://nuget.pkg.github.com/graphql-dotnet/index.json | |
env: | |
NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
- name: Install dependencies | |
working-directory: src | |
run: dotnet restore | |
- name: Build solution [Release] | |
working-directory: src | |
run: dotnet build --no-restore -c Release -p:VersionSuffix=$GITHUB_RUN_NUMBER | |
- name: Pack solution [Release] | |
working-directory: src | |
run: dotnet pack --no-restore -c Release -p:VersionSuffix=$GITHUB_RUN_NUMBER -o out | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Nuget packages | |
path: | | |
src/out/* | |
- name: Publish Nuget packages to GitHub registry | |
working-directory: src | |
run: dotnet nuget push "out/*" -k ${{secrets.GITHUB_TOKEN}} |