-
Notifications
You must be signed in to change notification settings - Fork 6
41 lines (37 loc) · 1.19 KB
/
upload-jar-translations.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Upload mod jar translations
on:
workflow_dispatch:
inputs:
target_lang:
description: "Target language to run"
required: true
type: string # Not a choice to prevent accident
env:
PARATRANZ_TOKEN: ${{ secrets.PARATRANZ_TOKEN }}
jobs:
upload-jar-translations:
name: Upload mod jar translations
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: master
- name: Get project ID
id: get-project-id
uses: ./.github/actions/get-project-id
with:
target_lang: ${{ inputs.target_lang }}
- name: Ensure Dependencies
uses: ./.github/actions/ensure-dependencies
- name: Download nightly
uses: ./.github/actions/download-nightly
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
directory: .nightly-temp
- name: Upload mod jar translations
run: >-
poetry run python main.py action upload-jar-translations
--modpack-path='.nightly-temp/nightly' --interactive=False
env:
PARATRANZ_PROJECT_ID: ${{ steps.get-project-id.outputs.project_id }}
TARGET_LANG: ${{ inputs.target_lang }}