Skip to content

Commit

Permalink
Get correct location to release artifact (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelshin authored Jun 1, 2023
1 parent 67c793f commit b684f2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-vsix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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" \
Expand Down

0 comments on commit b684f2a

Please sign in to comment.