Sync changes #7
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: Build package | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build Job | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install Dependencies | |
run: | | |
export TZ=Asia/Shanghai | |
sudo apt-get update -q | |
sudo apt-get install qtbase5-dev qtchooser qt5-qmake qtbase5-dev-tools qttools5-dev-tools -y -q | |
- env: | |
TG_API: ${{ secrets.TG_API }} | |
TG_GROUP_ID: ${{ secrets.TG_GROUP_ID }} | |
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/master' | |
run: | | |
echo "TG_API=${TG_API}" >> $GITHUB_ENV | |
echo "TG_GROUP_ID=${TG_GROUP_ID}" >> $GITHUB_ENV | |
- name: Build package | |
run: | | |
python3 maker.py | |
rm dist/* | |
- name: Push snapshot package | |
uses: "marvinpinto/action-automatic-releases@latest" | |
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/master' | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: "snapshot" | |
prerelease: true | |
title: "TeamSpeak 3 zh-CN translation snapshot build" | |
files: | | |
Chinese_Translation_zh-CN.ts3_translation | |
- name: Upload mappings | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Chinese_Translation_zh-CN.ts3_translation | |
path: Chinese_Translation_zh-CN.ts3_translation | |
- name: Group notify | |
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/master' | |
run: python3 maker.py 1 |