| 123456789101112131415161718192021222324 |
- name: Upload resources to Transifex
- on:
- push:
- branches:
- - master
- paths:
- - src/**
- jobs:
- build:
- runs-on: ubuntu-latest
- steps:
- - name: Checkout code
- uses: actions/checkout@v2
- - uses: actions/setup-node@v2-beta
- with:
- node-version: '15'
- - name: Update locale files
- run: yarn && yarn copyI18n
- - name: Upload to Transifex
- run: 'curl -i -L --user api:$TRANSIFEX_TOKEN -X PUT -F file=@dist/_locales/en/messages.json https://www.transifex.com/api/2/project/violentmonkey-nex/resource/messagesjson/content/'
- env:
- TRANSIFEX_TOKEN: ${{ secrets.TRANSIFEX_TOKEN }}
|