@@ -216,28 +216,28 @@ jobs:
216
216
VERSION : ${{ needs.push-operator-setup.outputs.new_tag_without_v }}
217
217
218
218
# Commit back changes
219
- - name : Commit files
220
- run : |
221
- git config --local user.email "${{ inputs.BOT_EMAIL }}"
222
- git config --local user.name "${{ inputs.BOT_USERNAME }}"
223
- git status
224
- git add .
225
-
226
- if git diff --cached --quiet; then
227
- echo "No changes to commit."
228
- echo "commit_made=false" >> $GITHUB_ENV
229
- exit 0
230
- fi
231
-
232
- git commit -m "[skip-ci] Update artifacts" -a
233
- echo "commit_made=true" >> $GITHUB_ENV
234
-
235
- - name : Push changes
236
- if : ${{ env.commit_made == 'true' }}
237
- uses : ad-m/github-push-action@master
238
- with :
239
- github_token : ${{ secrets.ADMIN_TOKEN }}
240
- branch : ${{ inputs.RELEASE_BRANCH }}
219
+ # - name: Commit files
220
+ # run: |
221
+ # git config --local user.email "${{ inputs.BOT_EMAIL }}"
222
+ # git config --local user.name "${{ inputs.BOT_USERNAME }}"
223
+ # git status
224
+ # git add .
225
+ #
226
+ # if git diff --cached --quiet; then
227
+ # echo "No changes to commit."
228
+ # echo "commit_made=false" >> $GITHUB_ENV
229
+ # exit 0
230
+ # fi
231
+ #
232
+ # git commit -m "[skip-ci] Update artifacts" -a
233
+ # echo "commit_made=true" >> $GITHUB_ENV
234
+ #
235
+ # - name: Push changes
236
+ # if: ${{ env.commit_made == 'true' }}
237
+ # uses: ad-m/github-push-action@master
238
+ # with:
239
+ # github_token: ${{ secrets.ADMIN_TOKEN }}
240
+ # branch: ${{ inputs.RELEASE_BRANCH }}
241
241
242
242
- name : Push Latest Tag
243
243
uses :
anothrNick/[email protected]
0 commit comments