Skip to content

Commit

Permalink
Fix release detection in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nisargjhaveri committed Jun 23, 2023
1 parent fca2301 commit ff0a8d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/vsce-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
cache: 'npm'
- name: Setup Environment
run: |
if [ "$GITHUB_REF_TYPE" = "tag" -a "${GITHUB_REF_NAME::0}" = "v" ]; then
if [ "$GITHUB_REF_TYPE" = "tag" -a "${GITHUB_REF_NAME::1}" = "v" ]; then
VSIX_OUT_NAME="ios-deploy-${GITHUB_REF_NAME:1}.vsix"
else
VSIX_OUT_NAME="ios-deploy.vsix"
Expand Down

0 comments on commit ff0a8d0

Please sign in to comment.