Troubleshooting
Release-plz GitHub action started misbehaving
Did your release-plz GitHub action started misbehaving after a Release-plz or GitHub action release?
If yes, try to:
-
Pin a specific version of the release-plz GitHub action in your workflow file. E.g. go from
MarcoIeni/release-plz-action@v0.5
toMarcoIeni/release-plz-action@v0.5.16
. Determine the right version to pin by looking at the previous GitHub Action releases -
Pin a specific version of the release-plz in the GitHub action, by specifying the
version
field in the GitHub Action input. E.g.version: "0.3.70"
. The default is the latest version of release-plz. Determine the right version to pin by looking at the previous release-plz releases
Please open an issue, too.
release-plz release
hangs
Something similar happened in #1015.
Try to set a low publish_timeout
in your release-plz.toml
file to check if release-plz
is having issues to:
- check if a package was published.
- publish a package.
See DEBUG
logs
Release-plz uses the RUST_LOG
environment variable to filter the level of the printed logs.
By default, release-plz shows logs at the info
level, or more severe.
To see debug logs, use RUST_LOG=debug release-plz
.
If you want something even more details, use RUST_LOG=trace release-plz