Improve query system. #132
Workflow file for this run
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: Build Dotnet SDK | |
on: | |
push: | |
tags: | |
- 'dotnet-sdk-*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: setup dotnet | |
uses: actions/[email protected] | |
with: | |
dotnet-version: 7.0.x | |
- name: publish | |
run: | | |
cd csharp/Squidex.ClientLibrary | |
dotnet pack -c Release | |
- name: pack | |
run: | | |
cd csharp/Squidex.ClientLibrary | |
dotnet nuget push **/*.nupkg --source 'https://api.nuget.org/v3/index.json' --skip-duplicate -k ${{ secrets.nuget }} |