-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (41 loc) · 1.18 KB
/
ladder_zip.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
42
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
# check-out repo
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Checkout submodules
run: git submodule update --init --recursive
# install poetry
- name: Install poetry
run: pipx install poetry
# set-up python with cache
- name: Setup Python 3.12
uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'poetry'
- name: Update pip
run: pip install -U pip
- name: Install requirements
run: pip install -e .
- name: Compile ladder zip
run: poetry run python scripts/create_ladder_zip.py
- uses: montudor/action-zip@v1
with:
args: unzip -qq bot.zip -d out
- uses: actions/upload-artifact@v4
with:
name: ladder-zip
path: out
- name: Upload to AIArena
env:
UPLOAD_API_TOKEN: ${{ secrets.UPLOAD_API_TOKEN }}
UPLOAD_BOT_ID: ${{ secrets.UPLOAD_BOT_ID }}
run: poetry run python scripts/upload_to_ai_arena.py