ajour 1.0.1

A World of Warcraft addon manager
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
name: Update terms
on: workflow_dispatch

jobs:
  update-terms:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2

      - name: Push terms to POEditor
        run: curl -X POST https://api.poeditor.com/v2/projects/upload
          -F api_token="${{ secrets.POEDITOR_API_TOKEN }}"
          -F id="${{ secrets.POEDITOR_PROJECT_ID }}"
          -F updating="terms"
          -F file=@"locale/en.json"