From 9c28f772f03eff86857f3fb1b49066edd149d16f Mon Sep 17 00:00:00 2001 From: Olivier Morelle Date: Sat, 25 Oct 2025 10:54:50 +0200 Subject: [PATCH] Doc(github-actions.rst) fixes the GitHub Actions example The deploy job requires outputs.released to be set to true. This change adds this output, though I am not sure if it is conditional on the success of the release. --- docs/configuration/automatic-releases/github-actions.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/configuration/automatic-releases/github-actions.rst b/docs/configuration/automatic-releases/github-actions.rst index be8a8b480..fbf5110e8 100644 --- a/docs/configuration/automatic-releases/github-actions.rst +++ b/docs/configuration/automatic-releases/github-actions.rst @@ -953,6 +953,9 @@ to the GitHub Release Assets as well. path: dist if-no-files-found: error + outputs: + released: ${{ steps.release.outputs.released || 'false' }} + deploy: # 1. Separate out the deploy step from the publish step to run each step at # the least amount of token privilege