Skip to content

Commit

Permalink
Merge pull request #767 from kiwix/rename-fix-cd-workflow
Browse files Browse the repository at this point in the history
Using upload_failure_logs.py (not .sh)
  • Loading branch information
kelson42 authored Oct 18, 2024
2 parents c9920d5 + e8a7924 commit e1b6d1f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 35 deletions.
12 changes: 0 additions & 12 deletions .github/FUNDING.yml

This file was deleted.

15 changes: 0 additions & 15 deletions .github/stale.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release&Nigthly
name: CD

on:
push:
Expand All @@ -23,9 +23,9 @@ jobs:
HOME: 'C:\\Users\\runneradmin'
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup python 3.12
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install packages
Expand Down Expand Up @@ -172,7 +172,7 @@ jobs:
BINTRAY_PASS: ${{secrets.bintray_pass}}
- name: Upload failure logs
if: failure()
run: $HOME/kiwix-build/.github/scripts/upload_failure_logs.sh
run: $HOME/kiwix-build/.github/scripts/upload_failure_logs.py
env:
COMPILE_CONFIG: ${{matrix.config}}

Expand Down Expand Up @@ -217,7 +217,7 @@ jobs:
kiwix-build/.github/scripts/build_release_nightly.py
- name: Upload failure logs
if: failure()
run: $HOME/kiwix-build/.github/scripts/upload_failure_logs.sh
run: $HOME/kiwix-build/.github/scripts/upload_failure_logs.py

Macos:
strategy:
Expand Down Expand Up @@ -296,7 +296,7 @@ jobs:
COMPILE_CONFIG: ${{matrix.config}}
- name: Upload failure logs
if: failure()
run: $GITHUB_WORKSPACE/.github/scripts/upload_failure_logs.sh
run: $GITHUB_WORKSPACE/.github/scripts/upload_failure_logs.py
env:
COMPILE_CONFIG: ${{matrix.config}}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
HOME: 'C:\\Users\\runneradmin'
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup python 3.12
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install packages
Expand Down

0 comments on commit e1b6d1f

Please sign in to comment.