-
Notifications
You must be signed in to change notification settings - Fork 45
58 lines (56 loc) · 2.36 KB
/
test-pr-render-vscode.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: "Pull request: deploy to preview website (Netlify) and test notebooks"
on:
pull_request:
branches:
- main
- master
jobs:
enonces-vscode:
name: Render notebooks
runs-on: ubuntu-latest
container: linogaliana/python-datascientist:latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{github.event.pull_request.head.repo.full_name}}
- name: Configure safe.directory # Workaround for actions/checkout#760
run: |
git config --global --add safe.directory /__w/python-datascientist/python-datascientist
git config --global --add safe.directory /__w/python-datascientist/python-datascientist-notebooks
- shell: bash
run: |
ls
conda info
conda list
- name: Convert in ipynb with Quarto
run: |
quarto --version
rm _quarto.yml
python ./build/nice-vscode/tweak_pipeline_vscode.py --filename _quarto.yml
cp ./build/nice-vscode/lang-notebook-vscode.lua ./build/lang-notebook.lua
cp _quarto-prod2.yml _quarto.yml
quarto render content --to ipynb --profile fr
quarto render content --to ipynb --profile en
mkdir -p temp_notebooks
mkdir -p temp_notebooks/notebooks
python build/move_files.py --direction temp_notebooks/notebooks
quarto render content --to ipynb --execute -M echo:true --profile fr
quarto render content --to ipynb --execute -M echo:true --profile en
mkdir -p temp_notebooks/corrections
python build/move_files.py --direction temp_notebooks/corrections
- name: Pushes to another repository (VSCode)
if: ${{ github.event.pull_request.head.repo.full_name == github.repository }}
uses: linogaliana/github-action-push-to-another-repository@main
env:
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}
with:
source-directory: 'temp_notebooks/'
destination-repository-username: 'linogaliana'
destination-repository-name: 'python-datascientist-notebooks-vscode'
user-email: [email protected]
destination-github-username: linogaliana
target-branch: dev
create-target-branch-if-needed: true
reset-repo: true