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 20dd5fd commit 3a93f4fCopy full SHA for 3a93f4f
.github/workflows/dispatch-release.yml
@@ -67,17 +67,13 @@ jobs:
67
- name: Create tags and trigger release workflows
68
run: |
69
while read url; do
70
- url_with_token="${url/https:\/\/github.com/https:\/\/x-access-token:${GH_TOKEN}@github.com}"
71
- git clone "$url_with_token"
72
- folder=$(basename "$url" .git)
73
- cd $folder
74
75
version=${{github.event.inputs.release-version}}
76
branch_name=${{github.event.inputs.branch-name}}
77
78
gh workflow run release.yml \
79
--ref main \
80
- -f releaseVersion="$version"
+ -f releaseVersion="$version" \
81
-f gitReference="$branch_name"
82
83
cd -
0 commit comments