Skip to content

feat: Update project version and refactor JS code #70

feat: Update project version and refactor JS code

feat: Update project version and refactor JS code #70

Workflow file for this run

name: .NET
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: ['8.0.x']
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Restore dependencies
run: dotnet restore
working-directory: src/Rizzy
- name: Publish
run: dotnet publish --no-restore -c Release -o ./publish
working-directory: src/Rizzy
- name: Test
run: dotnet test --no-build --verbosity normal
working-directory: src/Rizzy
- name: Publish
uses: brandedoutcast/publish-nuget@v2.5.2
with:
PROJECT_FILE_PATH: src/Rizzy/Rizzy.csproj
NUGET_KEY: ${{secrets.NUGET_API_KEY}}