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

Run everything in temp dir #111

Merged
merged 1 commit into from
Aug 26, 2024
Merged
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
4 changes: 4 additions & 0 deletions setup/action.yml
Original file line number Diff line number Diff line change
@@ -35,6 +35,7 @@ runs:
;;
esac
shell: bash
working-directory: ${{ runner.temp }}
- name: 'Download Quarto'
id: download-quarto
env:
@@ -64,6 +65,7 @@ runs:
# send the cderv bat-signal!
fi
shell: bash
working-directory: ${{ runner.temp }}
- name: 'Install Quarto'
run: |
# Install quarto
@@ -92,6 +94,7 @@ runs:
[ ${{ runner.os }} != "Windows" ] && rm $installer
echo "Quarto Installed !"
shell: bash
working-directory: ${{ runner.temp }}
- name: 'Install TinyTeX'
env:
QUARTO_PRINT_STACK: true
@@ -115,3 +118,4 @@ runs:
esac
echo "TinyTeX installed !"
shell: bash
working-directory: ${{ runner.temp }}