File tree 1 file changed +43
-0
lines changed
1 file changed +43
-0
lines changed Original file line number Diff line number Diff line change
1
+
2
+ name : Build
3
+
4
+ on :
5
+ watch :
6
+ push :
7
+ # branches: [ "main" ]
8
+ # pull_request:
9
+ # branches: [ "main" ]
10
+
11
+ jobs :
12
+ build :
13
+
14
+ runs-on : ubuntu-latest
15
+
16
+ steps :
17
+ - uses : actions/checkout@v3
18
+ - name : Set up Python 3.10
19
+ uses : actions/setup-python@v3
20
+ with :
21
+ python-version : " 3.10"
22
+ - name : Begin
23
+ run : |
24
+ python3 ./build.py
25
+
26
+ - name : Upload to release
27
+ uses : marvinpinto/action-automatic-releases@latest
28
+ with :
29
+ repo_token : " ${{ secrets.GITHUB_TOKEN }}"
30
+ automatic_release_tag : " test-release-AA"
31
+ prerelease : true
32
+ title : Daily Test
33
+ files : |
34
+ AdvocateAncientMono.7z
35
+ AdvocateAncientSans.7z
36
+ AdvocateAncientSerif.7z
37
+ AdvocateAncientMonoSC.7z
38
+ AdvocateAncientSansSC.7z
39
+ AdvocateAncientSerifSC.7z
40
+ AdvocateAncientSansST.7z
41
+ AdvocateAncientSerifST.7z
42
+
43
+
You can’t perform that action at this time.
0 commit comments