Update language files #64
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update language files | |
on: | |
workflow_dispatch: | |
schedule: | |
# runs every night | |
- cron: '0 1 * * *' | |
jobs: | |
SBIE_Plus_lupdate: | |
name: SBIE Plus lupdate | |
# Skip the job on forks | |
if: (github.event_name == 'schedule' && github.repository_owner == 'sandboxie-plus') || (github.event_name != 'schedule') | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- name: Install Qt 5 packages | |
shell: bash | |
run: | | |
sudo apt-get update | |
sudo apt-get install --no-install-recommends qtbase5-dev qttools5-dev-tools | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Sync Sbie Plus language strings (.ts files) | |
id: check | |
shell: bash | |
working-directory: SandboxiePlus/SandMan | |
run: | | |
set +e | |
lupdate SandMan.pri | |
git diff --exit-code | |
echo "deploy=$?" >> $GITHUB_OUTPUT | |
- name: Commit translations changes (if any) | |
if: steps.check.outputs.deploy == '1' | |
shell: bash | |
run: | | |
git config user.name github-actions[bot] | |
git config user.email 41898282+github-actions[bot]@users.noreply.github.com | |
git add -A | |
git commit -m "Sync SBIE Plus language files (lupdate)" | |
git pull --rebase=merges | |
git push | |
deploy_commit=$(git rev-parse HEAD) | |
echo "Created commit: $GITHUB_SERVER_URL/$GITHUB_REPOSITORY/commit/$deploy_commit" | |
SBIE_reports: | |
name: SBIE reports | |
# Skip the job on forks | |
if: (github.event_name == 'schedule' && github.repository_owner == 'sandboxie-plus') || (github.event_name != 'schedule') | |
runs-on: windows-2019 | |
timeout-minutes: 15 | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Setup msbuild | |
uses: microsoft/setup-msbuild@v2 | |
- name: Build Sandboxie x86 | |
# This step is needed to compile Parse.vcxproj | |
run: | | |
msbuild /t:build Sandboxie\Sandbox.sln /p:Configuration="SbieRelease" /p:Platform=Win32 -maxcpucount:8 | |
cd Sandboxie/msgs/SbieRelease | |
copy Parse.exe ../ | |
- name: Check new Sbie strings found in Sbie-English-1033.txt | |
id: check2 | |
shell: cmd | |
working-directory: Sandboxie/msgs | |
run: | | |
.\RunReport.bat | |
- name: Commit updated strings in Sandboxie/msgs/report | |
shell: bash | |
run: | | |
git config user.name github-actions[bot] | |
git config user.email 41898282+github-actions[bot]@users.noreply.github.com | |
git clean -f -x | |
git add -u Sandboxie/msgs/report/Report-*.txt | |
git diff-index --quiet --cached HEAD || git commit -m "Update SBIE language reports (RunReport)" | |
git pull --rebase=merges | |
git push | |
deploy2_commit=$(git rev-parse HEAD) | |
echo "Created commit: $GITHUB_SERVER_URL/$GITHUB_REPOSITORY/commit/$deploy2_commit" |