From 53eaa396e2a6c1542b5e7f08086a28c04e18477b Mon Sep 17 00:00:00 2001 From: Christopher Schuchardt Date: Fri, 12 Jul 2024 02:39:38 -0400 Subject: [PATCH] Fixed Publish Step (#3411) Co-authored-by: NGD Admin <154295625+NGDAdmin@users.noreply.github.com> --- .github/workflows/main.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 754b879b0e..71602a6df2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -124,19 +124,13 @@ jobs: - name: Set Version run: git rev-list --count HEAD | xargs printf 'CI%05d' | xargs -I{} echo 'VERSION_SUFFIX={}' >> $GITHUB_ENV - - name : Pack (Neo) + - name : Pack (Everything) run: | dotnet pack \ --configuration Release \ --output ./out \ --version-suffix ${{ env.VERSION_SUFFIX }} - - name: Remove Unwanted Files - working-directory: ./out - run: | - rm -v Neo.CLI* - rm -v Neo.GUI* - - name: Publish to Github Packages working-directory: ./out run: |