From 14faec56cb4997191b97bb90f12d6b1f0840d4a5 Mon Sep 17 00:00:00 2001 From: Bradley Lowekamp Date: Fri, 21 Jul 2023 15:25:53 -0400 Subject: [PATCH] GHA fix publish upload files The gh release upload command take files not a directory. --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e9a6ae6..5c81776 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -127,7 +127,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | gh release create ${{ github.ref_name }} --repo ${{ github.repository }} --verify-tag --generate-notes --title "Release ${{ github.ref_name }}" - gh release upload ${{ github.ref_name }} --repo ${{ github.repository }} ${{steps.download.outputs.download-path}} + gh release upload ${{ github.ref_name }} --repo ${{ github.repository }} ${{steps.download.outputs.download-path}}/* - name: bcbb-pypi upload run: |