mirror of
				https://github.com/arsenetar/dupeguru.git
				synced 2025-09-11 17:58:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			582 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			582 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| # Push translation source to Transifex
 | |
| name: Transifex Sync
 | |
| 
 | |
| on:
 | |
|   push:
 | |
|     branches:
 | |
|       - master
 | |
|     paths:
 | |
|       - locale/*.pot
 | |
| 
 | |
| env:
 | |
|   TX_VERSION: "v1.6.10"
 | |
| 
 | |
| jobs:
 | |
|   push-source:
 | |
|     runs-on: ubuntu-latest
 | |
|     steps:
 | |
|       - uses: actions/checkout@v4
 | |
|       - name: Get Transifex Client
 | |
|         run: |
 | |
|           curl -o- https://raw.githubusercontent.com/transifex/cli/master/install.sh | bash -s -- $TX_VERSION
 | |
|       - name: Update & Push Translation Sources
 | |
|         env:
 | |
|           TX_TOKEN: ${{ secrets.TX_TOKEN }}
 | |
|         run: |
 | |
|           ./tx push -s --use-git-timestamps
 |