Skip to content

feat(orm): add unchecked casts for ushort and byte types #7

feat(orm): add unchecked casts for ushort and byte types

feat(orm): add unchecked casts for ushort and byte types #7

Workflow file for this run

name: Publish
on:
push:
branches:
- '**'
tags:
- 'v*.*.*'
jobs:
publish:
if: ${{ github.event_name == 'push' && (startsWith(github.ref, 'refs/tags/v') || contains(github.event.head_commit.message, '[publish]')) }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '10.0.x'
- run: dotnet restore
- run: dotnet pack -c Release --no-restore
- run: dotnet nuget push "**/*.nupkg" --skip-duplicate --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json