WORKFLOW: changing push action [skip ci]

This commit is contained in:
XargonWan 2025-02-03 11:01:05 +09:00
parent cda96a9438
commit d862bd89b5

View file

@ -23,13 +23,15 @@ jobs:
GIT_MAIL: ${{ secrets.GITMAIL }} GIT_MAIL: ${{ secrets.GITMAIL }}
- name: Commit and push changes - name: Commit and push changes
uses: stefanzweifel/git-auto-commit-action@v4 uses: EndBug/add-and-commit@v9
with: with:
commit_message: "Updated flathub/net.retrodeck.retrodeck to v${{ env.RELNAME }} from RetroDECK/${{ env.RD_BRANCH }}" message: "Updated flathub/net.retrodeck.retrodeck to v${{ env.RELNAME }} from RetroDECK/${{ env.RD_BRANCH }}"
branch: "${{ env.RD_BRANCH }}" new_branch: "${{ env.RD_BRANCH }}"
repository: "${{ env.TARGET_REPO }}" cwd: "${{ env.FOLDER_TO_PUSH }}"
push_options: '--force' push: 'origin ${{ env.TARGET_REPO }} --force'
commit_user_email: ${{ secrets.GITMAIL }} author_email: ${{ secrets.GITMAIL }}
commit_user_name: ${{ secrets.GITNAME }} committer_email: ${{ secrets.GITNAME }}
create_branch: true create_branch: true
file_pattern: "${{ env.FOLDER_TO_PUSH }}/*" add: "*"
tag: "v${{ env.RD_BRANCH }}"
tag_push: '--force'