From ef05f94d41d9cb19a35674158c01b4143ec58818 Mon Sep 17 00:00:00 2001 From: Swaroop CH Date: Sun, 9 Jun 2024 20:52:38 -0700 Subject: [PATCH 1/7] Try running on PR to iterate fix --- .github/workflows/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 49cfe921..01d8ac04 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -5,6 +5,8 @@ on: push: branches: - master + pull_request: + types: [opened, reopened] jobs: build: From e56847e8873541e8a7579f48fea574bd1ce31c26 Mon Sep 17 00:00:00 2001 From: Swaroop CH Date: Sun, 9 Jun 2024 20:55:27 -0700 Subject: [PATCH 2/7] Try ubuntu-latest --- .github/workflows/main.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 01d8ac04..8ec88376 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,7 +11,8 @@ on: jobs: build: - runs-on: ubuntu-20.04 + # https://github.com/actions/runner-images + runs-on: ubuntu-latest steps: From bb892ffa785d288b1230cd0036c1404601405dd6 Mon Sep 17 00:00:00 2001 From: Swaroop CH Date: Sun, 9 Jun 2024 20:57:03 -0700 Subject: [PATCH 3/7] Try latest nodejs --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8ec88376..d9946937 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -21,9 +21,9 @@ jobs: # https://github.com/actions/setup-node - name: Install Node.js - uses: actions/setup-node@v2-beta + uses: actions/setup-node@v4 with: - node-version: '14' + node-version: '20' # https://github.com/actions/checkout - name: Checkout From ce582d4f95bdb774d6f52d7764cd9d70074965fa Mon Sep 17 00:00:00 2001 From: Swaroop CH Date: Sun, 9 Jun 2024 21:09:12 -0700 Subject: [PATCH 4/7] Try on all pushes --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d9946937..333ab3b0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -3,10 +3,10 @@ name: CI on: push: - branches: - - master - pull_request: - types: [opened, reopened] + # branches: + # - master + # pull_request: + # types: [opened, reopened] jobs: build: From ee0b7986d0438baf14a822f774582230ba99f326 Mon Sep 17 00:00:00 2001 From: Swaroop CH Date: Sun, 9 Jun 2024 21:15:20 -0700 Subject: [PATCH 5/7] Try apt update --- .github/workflows/main.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 333ab3b0..3730df85 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -17,7 +17,9 @@ jobs: steps: - name: Install Calibre - run: sudo apt install calibre # for `ebook-convert` command + run: | + sudo apt update + sudo apt install calibre # for `ebook-convert` command # https://github.com/actions/setup-node - name: Install Node.js From 42ef791e685f25579622d403c9eb8120d6f553db Mon Sep 17 00:00:00 2001 From: Swaroop CH Date: Sun, 9 Jun 2024 21:17:35 -0700 Subject: [PATCH 6/7] Fix URL --- revision_history.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/revision_history.md b/revision_history.md index f65270f8..5c5ce086 100644 --- a/revision_history.md +++ b/revision_history.md @@ -42,7 +42,7 @@ The book needs the help of its readers such as yourselves to point out any parts - 04 Sep 2008 and still in progress - Revival after a gap of 3.5 years! - Rewriting for Python 3.0 - - Rewrite using http://www.mediawiki.org[MediaWiki] (again) + - Rewrite using [MediaWiki](http://www.mediawiki.org) (again) - 1.20 - 13 Jan 2005 From 5070a6338af0ecfad616bcece876171ef9712b6a Mon Sep 17 00:00:00 2001 From: Swaroop CH Date: Sun, 9 Jun 2024 21:20:50 -0700 Subject: [PATCH 7/7] Revert back to deploy on master only --- .github/workflows/main.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3730df85..04cd6146 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -3,10 +3,8 @@ name: CI on: push: - # branches: - # - master - # pull_request: - # types: [opened, reopened] + branches: + - master jobs: build: