FIX🐛: Refactor Order and Product classes #54
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
# publish-nuget.yml | |
name: Publish NuGet Package on Push to Main | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
Package: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: "8.0" | |
- name: Build, Test, and Publish NuGet | |
uses: wahinekai/actions-publish-nuget@v3.0.1 | |
with: | |
version: 1.1.7 | |
project-path: FoodService.Models/FoodService.Models.csproj | |
solution-path: FoodService.Models.sln | |
nuget-feed-password: ${{ secrets.PACKAGES_TOKEN }} |