-
Notifications
You must be signed in to change notification settings - Fork 1
37 lines (34 loc) · 872 Bytes
/
build.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
name: Build
on:
push:
branches:
- master
pull_request:
branches:
- master
schedule:
- cron: '0 0 1 1,3,5,7,9,11 *'
jobs:
build:
runs-on: windows-latest
if: "!contains(toJSON(github.event.commits.*.message), '[skip-ci]')"
steps:
- uses: actions/checkout@v3
- name: Install Python 3.11.4
uses: actions/setup-python@v4
with:
python-version: 3.11.4
architecture: 'x86'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install https://download.lfd.uci.edu/pythonlibs/archived/lxml-4.9.0-cp311-cp311-win32.whl
- name: Build release package
run: |
python build.py
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: Radeline
path: Radeline