You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While creating create-deployment-preview , / are being striped off, even if the actual branch name consists /
if [[ ${GITHUB_HEAD_REF##*/} != "" ]]; then
BRANCH_DEPLOYMENT_NAME=${GITHUB_HEAD_REF##*/}_$DEPLOYMENT_NAME
else
branch_ref="${{ github.ref }}"
branch_name="${branch_ref##*/}"
BRANCH_DEPLOYMENT_NAME=${branch_name}_$DEPLOYMENT_NAME
fi
This causes issues with deletion delete-deployment-preview as no cleanup is performed below.
While creating
create-deployment-preview
,/
are being striped off, even if the actual branch name consists/
This causes issues with deletion
delete-deployment-preview
as no cleanup is performed below.Steps to reproduce:
feature/test-br
feature/test-br
on remote to trigger workflow withgit push origin -d feature/test-br
No Deployment with the name feature/test-br_test was found
But it should try to delete
test-br_test
The text was updated successfully, but these errors were encountered: