Skip to content

Commit

Permalink
Debug paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Baschdl committed Jan 30, 2024
1 parent 6f596b4 commit 83bef0c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/push_to_overleaf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,17 @@ jobs:
- name: Checkout python project on Github
uses: actions/checkout@v4
- name: Checkout Overleaf project
run: git clone ${{ secrets.OVERLEAF_GIT_CLONE_URL }} overleaf/
run: |
git clone ${{ secrets.OVERLEAF_GIT_CLONE_URL }} overleaf/
echo "$PWD"
- name: Install dependencies
run: |
cd ${{ github.workspace }}/labproject/
cd ${{ github.workspace }}
python3 -m pip install --upgrade pip
pip install -e ".[docs]"
- name: Run experiments and generate plots
run: |
cd ${{ github.workspace }}/labproject/
cd ${{ github.workspace }}
python3 labproject/run.py
cd ..
cp -r labproject/plots/* overleaf/figures/
Expand Down

0 comments on commit 83bef0c

Please sign in to comment.