1010# # ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓
1111# #.title~
1212
13- name : Prepare and Trigger Release
13+ name : Process Package
1414
1515# # -----------------------------------------------------------------------------
1616
@@ -138,25 +138,25 @@ jobs:
138138 git push origin "$TAG_NAME" --force
139139 echo "Successfully pushed tag ${TAG_NAME}."
140140
141- # JOB 2: Creates the GitHub Release ONLY for '++' commits
142- create_release :
143- needs : prepare # This job depends on the 'prepare' job finishing successfully.
144- if : needs.prepare.outputs.should_create_full_release == 'true' # This entire job will ONLY RUN if the commit started with '++'.
145- runs-on : ubuntu-latest
146- permissions :
147- contents : write # To create the release
141+ # # JOB 2: Creates the GitHub Release ONLY for '++' commits
142+ # create_release:
143+ # needs: prepare # This job depends on the 'prepare' job finishing successfully.
144+ # if: needs.prepare.outputs.should_create_full_release == 'true' # This entire job will ONLY RUN if the commit started with '++'.
145+ # runs-on: ubuntu-latest
146+ # permissions:
147+ # contents: write # To create the release
148148
149- steps :
150- # This job's only step is to create a formal GitHub Release from the tag pushed by the 'prepare' job.
151- - name : Create GitHub Release from existing tag
152- env :
153- GH_TOKEN : ${{ secrets.GITHUB_TOKEN }} # Provides authentication for the GitHub CLI
154- run : |
155- # Get the tag name from the previous job's output
156- TAG_NAME="v${{ needs.prepare.outputs.version }}"
157- echo "Found full release trigger. Creating GitHub Release from tag ${TAG_NAME}..."
158- # Uses the GitHub CLI to create a release from the existing tag.
159- # This action will trigger the separate 'publish.yml' workflow.
160- gh release create "$TAG_NAME" \
161- --title "Release ${TAG_NAME}" \
162- --notes "${{ needs.prepare.outputs.release_notes }}"
149+ # steps:
150+ # # This job's only step is to create a formal GitHub Release from the tag pushed by the 'prepare' job.
151+ # - name: Create GitHub Release from existing tag
152+ # env:
153+ # GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Provides authentication for the GitHub CLI
154+ # run: |
155+ # # Get the tag name from the previous job's output
156+ # TAG_NAME="v${{ needs.prepare.outputs.version }}"
157+ # echo "Found full release trigger. Creating GitHub Release from tag ${TAG_NAME}..."
158+ # # Uses the GitHub CLI to create a release from the existing tag.
159+ # # This action will trigger the separate 'publish.yml' workflow.
160+ # gh release create "$TAG_NAME" \
161+ # --title "Release ${TAG_NAME}" \
162+ # --notes "${{ needs.prepare.outputs.release_notes }}"
0 commit comments