We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent febbab2 commit 15d4d6dCopy full SHA for 15d4d6d
1 file changed
.github/workflows/release-symfony-bundle.yml
@@ -56,6 +56,10 @@ jobs:
56
- name: Create release in target repo
57
if: steps.diff.outputs.changed == 'true'
58
run: |
59
- gh release create ${{ github.ref_name }} \
+ if [ -z "${GITHUB_REF_NAME}" ]; then
60
+ echo "GITHUB_REF_NAME is empty; aborting release creation"
61
+ exit 1
62
+ fi
63
+ gh release create "${GITHUB_REF_NAME}" \
64
--repo vardumper/html5-twig-component-bundle \
65
--notes "Auto-synced from ${GITHUB_REPOSITORY} release ${GITHUB_REF_NAME}"
0 commit comments