Skip to content

Commit

Permalink
Add git add . to uwp-autoconvert.yml
Browse files Browse the repository at this point in the history
Make sure all files (including new ones) are also staged
  • Loading branch information
ceddy4395 committed Apr 30, 2024
1 parent 8c9283e commit 2a37742
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/uwp-autoconvert.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,10 @@ jobs:
- name: Turn script debugging on
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
run: Set-PSDebug -Trace 1

- name: Stage all new/changed files
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
run: git add .

- name: Commit to repository
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
Expand Down

0 comments on commit 2a37742

Please sign in to comment.