From c263ce4bcfc697c168e76638bd109d537d4c7285 Mon Sep 17 00:00:00 2001 From: Chris C Date: Thu, 3 Aug 2023 16:56:26 -0600 Subject: [PATCH] Try again to fix the the double nesting for the GitHub Release artifact. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dc2c1d4..ae0153c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -95,6 +95,6 @@ jobs: # if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') run: | cd Release-fat - zip -r BEMCheckBox-v${{ steps.gitversion.outputs.majorMinorPatch }}.framework.zip BEMCheckBox.framework/* + zip -r BEMCheckBox-v${{ steps.gitversion.outputs.majorMinorPatch }}.framework.zip BEMCheckBox.framework/. echo "Listing: Release-fat" && ls -la dotnet gitreleasemanager addasset --token ${{ secrets.GITHUB_TOKEN }} --owner ${{ github.repository_owner }} --repository ${{ github.event.repository.name }} --tagName v${{ steps.gitversion.outputs.majorMinorPatch }} --assets BEMCheckBox-v${{ steps.gitversion.outputs.majorMinorPatch }}.framework.zip