Skip to content

Commit cbb1afa

Browse files
committed
test
1 parent f50f9ac commit cbb1afa

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/convert-to-qmd.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@ on:
66
- 'notebooks/**.ipynb'
77

88
jobs:
9-
permissions:
10-
contents: write
119
convert-and-copy:
1210
runs-on: ubuntu-latest
1311

12+
permissions:
13+
contents: write # Grant permissions to write content to the repository
14+
1415
steps:
1516
- name: Checkout the Linear_Algebra_with_Python repository
1617
uses: actions/[email protected]
@@ -55,12 +56,11 @@ jobs:
5556
git remote set-url origin https://$GITHUB_ACTOR:${{ secrets.PERSONAL_ACCESS_TOKEN }}@github.com/weijie-chen/weijie-chen.github.io.git
5657
5758
- name: Commit and Push Changes
58-
5959
run: |
6060
cd book_repo
6161
git config user.name "GitHub Actions"
6262
git config user.email "[email protected]"
6363
git add linear-algebra-with-python-book/chapters/*
6464
git add linear-algebra-with-python-book/index.html
6565
git commit -m "Updated chapters and Table of Contents"
66-
git push origin main
66+
git push origin main

notebooks/Chapter 2 - Basic Matrix Algebra.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"outputs": [],
2929
"source": [
3030
"from IPython.core.interactiveshell import InteractiveShell\n",
31-
"InteractiveShell.ast_node_interactivity = \"all\" # display multiple lines"
31+
"InteractiveShell.ast_node_interactivity = \"all\" # display multiple lines."
3232
]
3333
},
3434
{

0 commit comments

Comments
 (0)