Skip to content

Commit 169a285

Browse files
committed
tqdm outputs to stderr turns out
1 parent 95d6aa7 commit 169a285

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ jobs:
2828
run: make deps/install
2929

3030
- name: Download data
31-
run: uv run make download > /dev/null
31+
run: uv run make download > /dev/null 2>&1
3232
env:
3333
PRETALX_TOKEN: ${{ secrets.PRETALX_TOKEN }}
3434

3535
- name: Transform data
36-
run: uv run make transform > /dev/null
36+
run: uv run make transform > /dev/null 2>&1
3737

3838
- name: Setup SSH
3939
uses: webfactory/[email protected]
@@ -44,4 +44,4 @@ jobs:
4444
run: ssh-keyscan "static.europython.eu" > ~/.ssh/known_hosts
4545

4646
- name: Deploy
47-
run: uv run make deploy FORCE_DEPLOY=true > /dev/null
47+
run: uv run make deploy FORCE_DEPLOY=true

0 commit comments

Comments
 (0)