diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e378903..6ab204c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,6 +22,9 @@ jobs: permissions: contents: write id-token: write + outputs: + agent-version: ${{ steps.bootstrap.outputs.agent-version }} + major-version: ${{ steps.bootstrap.outputs.major-version }} steps: - uses: actions/checkout@v4 - name: Bootstrap Action Workspace @@ -105,7 +108,7 @@ jobs: fi git checkout $TARGET_BRANCH git checkout -b ${NEW_BRANCH} - git format-patch -k --stdout ${TARGET_BRANCH}...origin/main -- docs CHANGELOG.asciidoc | git am -3 -k + git format-patch -k --stdout ${TARGET_BRANCH}...origin/main -- docs | git am -3 -k git push origin ${NEW_BRANCH} gh pr create \ --title "post-release: ${GIT_TAG}" \