Fix Release Nightly (#10186)

This commit is contained in:
Tommaso Sciortino
2025-09-30 07:52:56 -07:00
committed by GitHub
parent 1d24f95a3f
commit 6ef78cbbe9
3 changed files with 15 additions and 7 deletions

View File

@@ -102,6 +102,7 @@ jobs:
dry-run: '${{ github.event.inputs.dry_run }}'
previous-tag: '${{ steps.nightly_version.outputs.PREVIOUS_TAG }}'
working-directory: './release'
skip-branch-cleanup: true
- name: 'Create and Merge Pull Request'
uses: './.github/actions/create-pull-request'
@@ -113,8 +114,9 @@ jobs:
dry-run: '${{ github.event.inputs.dry_run }}'
working-directory: './release'
- name: 'Create Issue on Failure'
if: '${{ failure() && github.event.inputs.dry_run == false }}'
if: "${{ failure() && github.event.inputs.dry_run != 'true' }}"
env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
RELEASE_TAG: '${{ steps.nightly_version.outputs.RELEASE_TAG }}'