Skip to content

different form fill info allocation to fix mem read issues #13

different form fill info allocation to fix mem read issues

different form fill info allocation to fix mem read issues #13

Workflow file for this run

name: Deploy
on:
push:
tags:
- 'v*.*.*'
jobs:
build-nuget:
name: Deployment
runs-on: ubuntu-22.04
steps:
- name: Set version tag
id: vars
run: echo ::set-output name=tag::$(echo ${GITHUB_REF:11})
- uses: actions/checkout@v1
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
- name: Build NuGet
run: dotnet pack -c Release -o out --version-suffix ${{ steps.vars.outputs.tag }} src/Docnet.Core/Docnet.Core.csproj
- name: Deploy NuGet Binaries
run: dotnet nuget push out/Docnet.Core.${{ steps.vars.outputs.tag }}.nupkg -k ${{ secrets.CICD_KEY }} -s https://api.nuget.org/v3/index.json