feat(BookingAdmin): model and endpoint for AddUser #344
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 prerelease | |
on: | |
push: | |
branches: | |
- develop # Default pre-release branch | |
jobs: | |
publish: | |
name: build, pack & publish | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '6.0.x' | |
# Build | |
- name: Build project | |
run: dotnet build | |
# Pack | |
- name: Package project | |
run: dotnet pack --configuration Release --version-suffix prerelease-$GITHUB_RUN_NUMBER | |
# Publish | |
- name: Publish project | |
run: dotnet nuget push src/bin/Release/*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://nuget.org |