Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CI: Pin versions, tidy up upload-artifact calls #185

Merged
merged 5 commits into from
Oct 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 6 additions & 14 deletions .github/workflows/create-pdfs-from-markdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ on:

jobs:
create_pdfs:
runs-on: ubuntu-20.04
container: pandoc/latex:latest
runs-on: ubuntu-22.04
container: pandoc/latex:2
steps:
- name: Install bash
run: apk add bash
Expand All @@ -21,31 +21,23 @@ jobs:
- name: Compile PDFs (slides)
run: |
./scripts/create-pdf-from-markdown.sh slides
- uses: actions/upload-artifact@master
- name: Upload slides
uses: actions/upload-artifact@master
with:
name: slides
path: slides
retention-days: 7
- name: Compile PDFs (quizzes)
run: |
./scripts/create-pdf-from-markdown.sh quiz
- uses: actions/upload-artifact@master
with:
name: texts
path: texts
retention-days: 7
- name: Compile PDFs (exercises)
run: |
./scripts/create-pdf-from-markdown.sh exercise
- uses: actions/upload-artifact@master
with:
name: texts
path: texts
retention-days: 7
- name: Compile PDFs (demos)
run: |
./scripts/create-pdf-from-markdown.sh demo
- uses: actions/upload-artifact@master
- name: Upload texts
uses: actions/upload-artifact@master
with:
name: texts
path: texts
Expand Down
2 changes: 1 addition & 1 deletion 01_version_control/git_basics_demo.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
- Maintainer: rebase, squash, cherry-pick, bisect
- Owner: submodules

![git overview picture from py-rse](https://merely-useful.tech/py-rse/figures/git-cmdline/git-remote.png)
![git overview picture from py-rse](https://third-bit.com/py-rse/figures/git-cmdline/git-remote.png)

- `git --help`, `git commit --help`
- incomplete statement `git comm`
Expand Down
Loading