From 16fa59b4fcdbe8799bb9e604d17f5cf888d0c526 Mon Sep 17 00:00:00 2001 From: Charlie Kindel Date: Mon, 8 Mar 2021 19:29:19 -0700 Subject: [PATCH] turning off symnbol gen again (#1128) --- .github/workflows/publish.yml | 15 ++++++++------- Terminal.Gui/Terminal.Gui.csproj | 2 +- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c8b73fd26..a26b2761f 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -25,14 +25,14 @@ jobs: dotnet tool install --global minver-cli --version 2.4.0 echo "MINVERVERSIONOVERRIDE=$(minver -t v -d rc)" >> $GITHUB_ENV - - name: Install dependencies - run: dotnet restore + #- name: Install dependencies + # run: dotnet restore - - name: Build - run: dotnet build --configuration Release --no-restore + #- name: Build + # run: dotnet build --configuration Release --no-restore - - name: Pack nuget package with symbols - run: dotnet pack --include-symbols + #- name: Pack nuget package with symbols + # run: dotnet pack --include-symbols - name: Publish Terminal.Gui id: publish_nuget @@ -69,4 +69,5 @@ jobs: # NUGET_SOURCE: https://api.nuget.org # Flag to toggle pushing symbols along with nuget package to the server, disabled by default - INCLUDE_SYMBOLS: true + # This is broken - see https://github.com/brandedoutcast/publish-nuget/issues/30 + INCLUDE_SYMBOLS: false diff --git a/Terminal.Gui/Terminal.Gui.csproj b/Terminal.Gui/Terminal.Gui.csproj index b2c8b2177..cb7f6b013 100644 --- a/Terminal.Gui/Terminal.Gui.csproj +++ b/Terminal.Gui/Terminal.Gui.csproj @@ -17,7 +17,7 @@ Application framework for creating modern console applications using .NET Terminal.Gui is a framework for creating console user interfaces - v1.0.0-beta.6 + v1.0.0-beta.8 * Now using MinVer to generate version numbers from git tags. * Updated publish-to-nuget to work with minver