diff --git a/.github/workflows/populate-preview-deployment-id.yaml b/.github/workflows/populate-preview-deployment-id.yaml index f05548ce79..fa257126de 100644 --- a/.github/workflows/populate-preview-deployment-id.yaml +++ b/.github/workflows/populate-preview-deployment-id.yaml @@ -23,11 +23,12 @@ jobs: cd charts/xui-webapp sed -i 's/PREVIEW_DEPLOYMENT_ID:.*/PREVIEW_DEPLOYMENT_ID: exui-preview-deployment-${{ github.event.number }}/' values.preview.template.yaml cd ../.. + git status + git diff git config --global user.name "${{github.actor}}" git config --global user.email "${{github.actor_id}}+${{github.actor}}@users.noreply.github.com" git add . git commit -m "Setting Preview Deployment ID" git push origin HEAD:${{ github.ref }} --force echo 'Preview deployment ID populated successfully' - exit 1 shell: bash