Skip to content

Commit 1d47616

Browse files
author
Maciej Olko
committed
Fix not adding new files to repository in update action
1 parent c4beef3 commit 1d47616

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/update.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ jobs:
2323
TX_TOKEN: ${{ secrets.TX_TOKEN }}
2424
- run: git config --local user.email 'maciej.olko@gmail.com'
2525
- run: git config --local user.name "GitHub Action's update-translation job"
26-
- run: git commit -a -m 'Update translation from Transifex' || true
26+
- run: git add .
27+
- run: git commit -m 'Update translation from Transifex' || true
2728
- uses: ad-m/github-push-action@master
2829
with:
2930
github_token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)