Skip to content

Commit 6422273

Browse files
authored
Merge pull request #17 from pep-dortmund/update_ci
update ci
2 parents 29267b1 + cc46177 commit 6422273

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,29 +11,26 @@ on:
1111
env:
1212
TEXLIVE_VERSION: 2024
1313
TERM: xterm
14-
# silences warnings from jupyter about not being able to debug the stdlib
15-
PYDEVD_DISABLE_FILE_VALIDATION: 1
1614

1715
jobs:
1816
build:
1917
runs-on: ubuntu-latest
18+
if: github.event.repository.name == 'toolbox-workshop-protocol-template'
2019

2120
defaults:
2221
run:
2322
# We need login shells (-l) for micromamba to work.
2423
shell: bash -leo pipefail {0}
2524

26-
2725
steps:
28-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@v4
2927

3028
- uses: mamba-org/setup-micromamba@v1
3129
with:
3230
environment-file: environment.yml
3331

3432
- name: Setup
3533
run: |
36-
sudo apt-get install --yes poppler-utils
3734
pip install install-texlive
3835
curl -fLO https://raw.githubusercontent.com/pep-dortmund/toolbox-workshop/main/tex-packages.txt
3936
python -m install_texlive -p $HOME/texlive -t $TEXLIVE_VERSION --collections='-a' --package-file tex-packages.txt --update -v

.github/workflows/remove_template_files.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# inspired by:
1+
# inspired by:
22
# https://github.com/JetBrains/intellij-platform-plugin-template/blob/main/.github/workflows/template-cleanup.yml
33

44
name: Template Cleanup
@@ -30,8 +30,8 @@ jobs:
3030
touch README.md
3131
NAME="${GITHUB_REPOSITORY##*/}"
3232
echo "# $NAME" >> README.md
33-
echo "Generated from [toolbox-workshop-protocol-template](https://github.com/pep-dortmund/toolbox-workshop-protocol-template)" >> README.md
34-
echo "Find more information in [notes.md](notes.md)." >> README.md
33+
echo "Generated from [toolbox-workshop-protocol-template](https://github.com/pep-dortmund/toolbox-workshop-protocol-template)." >> README.md
34+
echo -e "\nFind more information in [notes.md](notes.md)." >> README.md
3535
3636
# Commit modified files
3737
- name: Commit files

0 commit comments

Comments
 (0)