From a67327b7dbfd7a69860e6e30c63ed9b9e66245cc Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Tue, 21 Nov 2023 19:16:56 -0600 Subject: [PATCH] build: fix github actions to ensure release artefacts are uploaded The latest tag hit this error in the final phase of the build: > tapd-v0.3.2-beta.rc1/* not include valid file. The actual release artefacts use the package name which is `taproot-assets` and not `tapd. So in this commit, we attempt to point it to the proper location in the work directory. --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 8d6dc199e..9bfacb78e 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -42,7 +42,7 @@ jobs: name: tapd ${{ env.RELEASE_VERSION }} draft: true prerelease: false - files: tapd-${{ env.RELEASE_VERSION }}/* + files: taproot-assets-${{ env.RELEASE_VERSION }}/* body: | # Database Migrations TODO