File tree Expand file tree Collapse file tree 2 files changed +19
-4
lines changed
Expand file tree Collapse file tree 2 files changed +19
-4
lines changed Original file line number Diff line number Diff line change 3939 git checkout 22e2cb44a
4040 pip install .
4141 - run : pip install -e .[dev]
42- - run : ./build_vendored.py
42+ - name : Get vendored dependencies
43+ run : |
44+ apt-get --yes update
45+ apt-get --yes install curl
46+ ./build_vendored.py
4347 - name : Collect and compress assets
4448 run : |
4549 django-admin collectstatic --noinput
7781 git clone https://github.com/pretalx/pretalx.git
7882 pip install ./pretalx
7983 - run : pip install -e .[dev]
80- - run : ./build_vendored.py
84+ - name : Get vendored dependencies
85+ run : |
86+ apt-get --yes install curl
87+ ./build_vendored.py
8188 - name : Collect and compress assets
8289 run : |
8390 django-admin collectstatic --noinput
@@ -105,7 +112,11 @@ jobs:
105112 container : python:3.13-bookworm
106113 steps :
107114 - uses : actions/checkout@v4
108- - run : pip install build
115+ - name : Install build dependencies
116+ run : |
117+ apt-get --yes update
118+ apt-get --yes install curl
119+ pip install build
109120 - run : make build
110121 - name : Archive build results
111122 uses : actions/upload-artifact@v4
Original file line number Diff line number Diff line change 1212 container : python:3.13-bookworm
1313 steps :
1414 - uses : actions/checkout@v4
15- - run : pip install build
15+ - name : Install build dependencies
16+ run : |
17+ apt-get --yes update
18+ apt-get --yes install curl
19+ pip install build
1620 - run : make build
1721 - name : Store build results
1822 uses : actions/upload-artifact@v4
You can’t perform that action at this time.
0 commit comments