-
Notifications
You must be signed in to change notification settings - Fork 69
41 lines (34 loc) · 1.03 KB
/
release.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: release
on:
release:
types: [published]
jobs:
generate-txt:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10' # 你可以根据需要选择 Python 版本
- name: Generate frost_dict_for_fcitx5.txt from YAML
id: frost_dict_for_fcitx5
run: |
python others/program/release/generate_dict_for_fcitx5.py # 运行你的 Python 脚本
- name: Check if file exists
run: |
if [ -f "./frost_dict_for_fcitx5.txt" ]; then
echo "File exists."
else
echo "File does not exist."
fi
- name: Upload Release Asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
with:
asset_path: frost_dict_for_fcitx5.txt
asset_name: frost_dict_for_fcitx5.txt
asset_content_type: text/plain
upload_url: ${{ github.event.release.upload_url }}