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
echo "Triggering release workflow '${{ inputs.release-workflow }}' with tag '$VALIDATED_VERSION', release ID '$RELEASE_ID_VALUE', and dryRun=${{ inputs.draft }}..."
143
-
146
+
147
+
echo "Triggering release workflow '$RELEASE_WORKFLOW' with tag '$VALIDATED_VERSION', release ID '$RELEASE_ID_VALUE', and dryRun=$DRAFT_MODE..."
148
+
144
149
# Trigger the workflow
145
-
gh workflow run "${{ inputs.release-workflow }}" \
150
+
gh workflow run "$RELEASE_WORKFLOW" \
146
151
--repo "${{ github.repository }}" \
147
152
--ref $GITHUB_REF \
148
153
-f "version=$VALIDATED_VERSION" \
149
154
-f "releaseId=$RELEASE_ID_VALUE" \
150
-
-f "dryRun=${{ inputs.draft }}"
151
-
155
+
-f "dryRun=$DRAFT_MODE"
156
+
152
157
echo "Workflow triggered successfully"
153
-
158
+
154
159
# Wait a moment for the workflow to start, then get the run ID
0 commit comments