PUSHING: continue-on-error + pontential fixes [skip ci]

This commit is contained in:
XargonWan 2024-01-23 15:33:19 +01:00
parent affcd05c45
commit d8708063f5
2 changed files with 17 additions and 7 deletions

View file

@ -79,13 +79,23 @@ jobs:
token: ${{ secrets.TRIGGER_BUILD_TOKEN }} token: ${{ secrets.TRIGGER_BUILD_TOKEN }}
continue-on-error: true continue-on-error: true
- name: "Committing changes" # - name: "Committing changes"
uses: EndBug/add-and-commit@v9.1.3 # with:
# github_token: ${{ secrets.TRIGGER_BUILD_TOKEN }}
# run: |
# git config user.name "GitHub Actions"
# git config user.email "actions@github.com"
# git add * net.retrodeck.mame.yml
# git commit -m '[AUTOMATED] Updating MAME after build [skip ci]'
# git push origin main
# continue-on-error: true # TODO: would be good to update the manifest but it's broken
- name: GitHub Commit & Push
uses: actions-js/push@v1.4
with: with:
message: '[AUTOMATED] Updating MAME after build [skip ci]'
github_token: ${{ secrets.TRIGGER_BUILD_TOKEN }} github_token: ${{ secrets.TRIGGER_BUILD_TOKEN }}
author_name: GitHub Actions message: '[AUTOMATED] Updating MAME after build [skip ci]'
author_email: actions@github.com continue-on-error: true # TODO: would be good to update the manifest but it's broken