different form fill info allocation to fix mem read issues #13
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: 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 |