Skip to content

added a new check for list of guids and convert to list of strings (#56) #26

added a new check for list of guids and convert to list of strings (#56)

added a new check for list of guids and convert to list of strings (#56) #26

Workflow file for this run

name: release
on:
push:
tags:
- "1.*"
jobs:
release:
runs-on: ubuntu-latest
env:
PACKAGE_VERSION: ${{ github.ref_name }}
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- run: dotnet pack src/Neo4j.Berries.OGM -c Release /p:Version=$PACKAGE_VERSION
- run: dotnet nuget push src/Neo4j.Berries.OGM/bin/Release/*.nupkg --api-key ${{ secrets.NUGET_APIKEY }} --source https://api.nuget.org/v3/index.json