We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a41d776 commit caa9286Copy full SHA for caa9286
1 file changed
.github/workflows/build.yml
@@ -4,7 +4,7 @@ on:
4
push:
5
workflow_dispatch:
6
schedule:
7
- - cron: '0 1 * * *'
+ - cron: '0 1 * * 0'
8
9
env:
10
PROJECT_NAME: genesis-base
@@ -22,11 +22,16 @@ jobs:
22
- name: Build Genesis Core
23
run: |
24
set -eux
25
-
+
26
+ # Install uv
27
+ wget -qO- https://astral.sh/uv/install.sh | sh
28
+ source $HOME/.local/bin/env
29
+ uv tool install tox --with tox-uv
30
31
# Install DevTools
- rm -fr .venv && python3 -m venv .venv
32
+ rm -fr .venv && uv venv
33
source .venv/bin/activate
- pip install genesis-devtools
34
+ uv pip install genesis-devtools
35
genesis build $(pwd)
36
37
# Temporary upload step is done in the build script
0 commit comments