From a2e6fdd5c8ee7d5caa3f3d9aba8d6fc2baab7481 Mon Sep 17 00:00:00 2001 From: michaelshin Date: Thu, 1 Jun 2023 14:44:26 -0400 Subject: [PATCH] Get correct location to release artifact --- .github/workflows/build-vsix.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-vsix.yaml b/.github/workflows/build-vsix.yaml index ceef7d1..4dfd4ce 100644 --- a/.github/workflows/build-vsix.yaml +++ b/.github/workflows/build-vsix.yaml @@ -60,7 +60,7 @@ jobs: RELEASE_NOTES="$(git log $(git describe --abbrev=0 --tags --always).. --merges --pretty=format:"%s %b" | cut -f 4,7- -d ' ')" echo "Autogenerated Release Notes:" echo "$RELEASE_NOTES" - RELEASE_ARTIFACTS=$(find ./dist -name "*${{ github.event.inputs.tag }}*" -type f | paste -s -d ' ' - ) + RELEASE_ARTIFACTS=$(find ./deepview-explore -name "*${{ github.event.inputs.tag }}.vsix" -type f | paste -s -d ' ' - ) VERSION_TAG="v${{ github.event.inputs.tag }}" gh auth login --with-token <<< "${{ secrets.GH_TOKEN }}" gh release create "$VERSION_TAG" \