https://github.com/fabasoad/setup-jolie-action
This GitHub action installs Jolie
https://github.com/fabasoad/setup-jolie-action
github-action github-actions jolie jolie-microservices programming-language
Last synced: 11 months ago
JSON representation
This GitHub action installs Jolie
- Host: GitHub
- URL: https://github.com/fabasoad/setup-jolie-action
- Owner: fabasoad
- License: mit
- Created: 2022-11-08T13:52:07.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-03-11T22:03:18.000Z (11 months ago)
- Last Synced: 2025-03-11T23:19:10.581Z (11 months ago)
- Topics: github-action, github-actions, jolie, jolie-microservices, programming-language
- Language: Shell
- Homepage:
- Size: 60.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Setup Jolie action
[](https://stand-with-ukraine.pp.ua)




This action installs [Jolie](https://www.jolie-lang.org).
## Supported OS
| OS | |
|---------|--------------------|
| Windows | :white_check_mark: |
| Linux | :white_check_mark: |
| macOS | :white_check_mark: |
## Prerequisites
None.
## Inputs
```yaml
- uses: fabasoad/setup-jolie-action@v0
with:
# (Optional) Jolie version. Defaults to the latest version.
version: "1.12.2"
# (Optional) If "false" skips installation if jolie is already installed. If
# "true" installs jolie in any case. Defaults to "false".
force: "false"
# (Optional) GitHub token that is used to send requests to GitHub API such
# as getting latest release. Defaults to the token provided by GitHub Actions
# environment.
github-token: "${{ github.token }}"
```
## Outputs
| Name | Description | Example |
|-----------|------------------------------------|---------|
| installed | Whether jolie was installed or not | `true` |
## Example usage
### Workflow configuration
```yaml
name: Run on Ubuntu
on: push
jobs:
setup:
name: jolie
runs-on: ubuntu-latest
steps:
- uses: fabasoad/setup-jolie-action@v0
with:
version: "1.12.1"
- name: Print version
run: jolie --version
```
### Result
```shell
Run jolie --version
Jolie 1.12.1 (C) 2006-2022 the Jolie developers
```