Skip to content

Commit

Permalink
Create workflow for quarto
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleDolezal committed Mar 18, 2024
1 parent f279b5d commit 6812363
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/create-quarto.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: create-quarto

on:
push:
branches:
- create_quarto

jobs:
create_quarto:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
wget https://github.com/quarto-dev/quarto-cli/releases/download/v1.4.551/quarto-1.4.551-linux-amd64.tar.gz
mkdir ~/opt
tar -C ~/opt -xvzf quarto-1.4.551-linux-amd64.tar.gz
mkdir ~/bin
ln -s ~/opt/quarto-1.4.551/bin/quarto ~/bin/quarto
( echo ""; echo 'export PATH=$PATH:~/bin\n' ; echo "" ) >> ~/.profile
source ~/.profile
quarto check

0 comments on commit 6812363

Please sign in to comment.