Add A TestFilght Link #225
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: Add A TestFilght Link | |
on: | |
workflow_dispatch: | |
inputs: | |
app_name: | |
description: '应用名称(建议填上,程序可能无法通过链接判断 TestFlight 测试的应用名称)【中间不要有英文双引号或英文竖线分隔符"|"】' | |
required: false | |
default: 'None' | |
testflight_link: | |
description: 'Testflight 公共测试的完整链接(非 TestFilght 链接请添加到 scripts/data/signup.md)' | |
required: true | |
table: | |
description: '链接分类(可选值:`macos`, `ios`, `ios_game`, `chinese`)' | |
required: true | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
if: github.repository == 'pluwen/awesome-testflight-link' | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up Python | |
uses: actions/[email protected] | |
with: | |
python-version: '3.11.1' | |
architecture: x64 | |
- name: Init Python Env | |
run: pip install -r scripts/requirements.txt | |
- name: Add A TestFilght Link | |
run: python scripts/add_link.py "${{ github.event.inputs.testflight_link }}" "${{ github.event.inputs.table }}" "${{ github.event.inputs.app_name }}" | |
- name: Git commit && push | |
run: | | |
git_diff=`git diff` | |
if [ -z "$git_diff" ]; then echo "Nothing Changed";exit; fi | |
git config --global user.email "[email protected]" | |
git config --global user.name "github_bot" | |
git add . | |
git commit -m "Add A New Link" | |
git push |