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
fix: Use ghTokenWorkflow for CheckForUpdates in CreateRelease.yaml (#1503)
Fixes#1475 (hopefully completely this time)
My apologies Freddy, but I think I messed up when I tested #1477...
CI/CD worked just as intended, but "Create Release" did not work. It
ended up with a 404 error. It seemed as if the token sent to the
CreateRelase action was empty:
```
_actor: jwikman
_token: <----------
_templateUrl: https://github.com/[redacted]/AL-Go-PTE@preview
_downloadLatest: true
_update: N
_updateBranch: main
_directCommit: false
```
After the proposed change, the token is passed as expected
```
_actor: jwikman
_token: *** <---------------------
_templateUrl: https://github.com/[redacted]/AL-Go-PTE@preview
_downloadLatest: true
_update: N
_updateBranch: main
_directCommit: false
```
I do not fully follow the logic with the `TokenForPush` secret, but that
token did not seem to work in this context?
0 commit comments