GitHub executor does not wait for `version` to finish
See original GitHub issueI have the following configuration:
"version": {
"executor": "@jscutlery/semver:version",
"options": {
"push": true,
"noVerify": true,
"postTargets": ["workspace:github"]
}
},
"github": {
"executor": "@jscutlery/semver:github",
"options": {
"tag": "${tag}",
"notes": "${notes}",
"title": "Release ${tag}"
}
}
However, whenever I try to run nx run workspace:version, I get the following error:
tag vx.y.z exists locally but has not been pushed to REPONAME, please push it before continuing or specify the `--target` flag to create a new tag
It seems like semver:version does not wait for the GitHub push before finishing and calling the postTargets.
Issue Analytics
- State:
- Created 2 years ago
- Comments:5 (1 by maintainers)
Top Results From Across the Web
quarkus scheduler does not await termination of ... - GitHub
When hot code replace happens in dev mode, the scheduler extension does not wait for the scheduledExecutor to terminate.
Read more >Graceful loop shutdown with running executor tasks · Issue #258
When I send a long task to tread-pool executor and immediately close the loop without waiting future returned by .run_in_executor() call I ...
Read more >mpi4py/test_futures.py at master - GitHub
FINISHED. ) SHARED_POOL = futures._lib.SharedPool is not None ... self.executor.shutdown(wait=True) ... futures = [self.executor.submit(time.sleep, 0).
Read more >Scheduler can't restart until long-running local executor(s) finish
Version of Airflow (e.g. a release version, running your own fork, ... The scheduler does not wait on the executor except if the...
Read more >Wait container not actually waiting for main container #5252
Because the wait container doesn't actually wait for the main container to finish its work there are parameters and artifacts that have not...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

Thanks a lot @edbzn!
Just ran across the same problem