Skip to content

Added Simplified Chinese and Traditional Chinese translations to stringtable.xml #24

Added Simplified Chinese and Traditional Chinese translations to stringtable.xml

Added Simplified Chinese and Traditional Chinese translations to stringtable.xml #24

Workflow file for this run

name: Missions build on Pull Request
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
# push:
# branches: [ master ]
pull_request_target:
branches: [ master ]
# # Allows you to run this workflow manually from the Actions tab
# push:
# # Sequence of patterns matched against refs/heads
# # branches:
# # - master
# # Sequence of patterns matched against refs/tags
# tags:
# - v*
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Install dependencies
run: sudo apt-get install -y liblzo2-2 libvorbis0a libvorbisfile3 libvorbisenc2 libogg0 libuchardet0 wget
# Runs a single command using the runners shell
- name: Download Mikero PBO tool
run: wget https://mikero.bytex.digital/$(curl -Ls https://mikero.bytex.digital/Downloads | grep api | grep linux | cut -d "/" -f 2,3 | cut -d "\"" -f 1) -O ../depbo-tools.tgz
# Runs a set of commands using the runners shell
- name: Extract PBO tool
run: |
cd ../
tar xvf depbo-tools.tgz
mv -v depbo-*/* $HOME/
- name: Build missions
run: |
cd build
export PATH=$PATH:$HOME/bin
export LD_LIBRARY_PATH=$HOME/lib
bash build.sh && rm *.pbo || exit 1