Commit 0f03ccd
committed
Fix YAML syntax error in release workflow
**Issue:**
GitHub Actions expressions cannot be directly embedded in bash
multiline strings, causing YAML parser error on line 197.
**Fix:**
- Move ${{ needs.identifiers.outputs.base_branch }} to env var BASE_BRANCH
- Move ${{ needs.identifiers.outputs.head_sha }} to env var HEAD_SHA
- Reference as $BASE_BRANCH and $HEAD_SHA in bash script
This follows the pattern used in autobahn-python release workflow.1 parent 0420d70 commit 0f03ccd
1 file changed
Lines changed: 4 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
180 | 180 | | |
181 | 181 | | |
182 | 182 | | |
| 183 | + | |
| 184 | + | |
183 | 185 | | |
184 | 186 | | |
185 | 187 | | |
| |||
196 | 198 | | |
197 | 199 | | |
198 | 200 | | |
199 | | - | |
200 | | - | |
| 201 | + | |
| 202 | + | |
201 | 203 | | |
202 | 204 | | |
203 | 205 | | |
| |||
0 commit comments