Skip to content

Commit 2f95574

Browse files
committed
try -u before python call
1 parent ef8942c commit 2f95574

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/nightly-build.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ jobs:
2727
curl -O https://raw.githubusercontent.com/jukent/projectpythia.github.io/main/.github/workflows/get-metrics.py
2828
curl -O https://raw.githubusercontent.com/jukent/projectpythia.github.io/main/.github/workflows/write-metrics-md.py
2929
30-
python get-metrics.py
31-
python write-metrics-md.py
30+
python -u get-metrics.py
31+
python -u write-metrics-md.py
3232
3333
build:
3434
if: ${{ github.repository_owner == 'ProjectPythia' }}

.github/workflows/publish-site.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ jobs:
2929
curl -O https://raw.githubusercontent.com/jukent/projectpythia.github.io/main/.github/workflows/get-metrics.py
3030
curl -O https://raw.githubusercontent.com/jukent/projectpythia.github.io/main/.github/workflows/write-metrics-md.py
3131
32-
python get-metrics.py
33-
python write-metrics-md.py
32+
python -u get-metrics.py
33+
python -u write-metrics-md.py
3434
3535
build:
3636
uses: ProjectPythia/cookbook-actions/.github/workflows/build-book.yaml@main

.github/workflows/trigger-preview.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ jobs:
2929
curl -O https://raw.githubusercontent.com/jukent/projectpythia.github.io/main/.github/workflows/get-metrics.py
3030
curl -O https://raw.githubusercontent.com/jukent/projectpythia.github.io/main/.github/workflows/write-metrics-md.py
3131
32-
python get-metrics.py
33-
python write-metrics-md.py
32+
python -u get-metrics.py
33+
python -u write-metrics-md.py
3434
3535
find-pull-request:
3636
uses: ProjectPythia/cookbook-actions/.github/workflows/find-pull-request.yaml@main

.github/workflows/trigger-site-build.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424
curl -O https://raw.githubusercontent.com/jukent/projectpythia.github.io/main/.github/workflows/get-metrics.py
2525
curl -O https://raw.githubusercontent.com/jukent/projectpythia.github.io/main/.github/workflows/write-metrics-md.py
2626
27-
python get-metrics.py
28-
python write-metrics-md.py
27+
python -u get-metrics.py
28+
python -u write-metrics-md.py
2929
3030
build:
3131
uses: ProjectPythia/cookbook-actions/.github/workflows/build-book.yaml@main

0 commit comments

Comments
 (0)