https://github.com/cderv/install-quarto-action
Install Quarto (https://quarto.org/) using GitHub Actions. This action can be used to install Quarto on all runner OS
https://github.com/cderv/install-quarto-action
Last synced: about 1 year ago
JSON representation
Install Quarto (https://quarto.org/) using GitHub Actions. This action can be used to install Quarto on all runner OS
- Host: GitHub
- URL: https://github.com/cderv/install-quarto-action
- Owner: cderv
- License: mit
- Created: 2021-09-08T13:46:54.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-09-09T13:50:11.000Z (almost 5 years ago)
- Last Synced: 2025-04-04T16:52:14.166Z (about 1 year ago)
- Language: PowerShell
- Size: 29.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# install-quarto-action
> This work now lives in https://github.com/quarto-dev/quarto-actions/tree/main/install-quarto
Install Quarto (https://quarto.org/) using GitHub Actions. This action can be used to install Quarto on all runner OS and `quarto` will be available from PATH.
```yaml
name: quarto-setup
on:
branch: main
jobs:
quarto-linux:
runs-on: ubuntu-latest
steps:
- uses: cderv/install-quarto-action@v1
- run: |
quarto --version
quarto-windows:
runs-on: windows-latest
steps:
- uses: cderv/install-quarto-action@v1
- run: |
quarto --version
quarto-macos:
runs-on: macos-latest
steps:
- uses: cderv/install-quarto-action@v1
- run: |
quarto --version
```
This action will
* Download the Github Release of quarto on Mac and Linux and install it
* On Windows, it will for now use Scoop to install Quarto msi, until I manage to install an MSI file on Github Action.