{"id":16019826,"url":"https://github.com/fabasoad/setup-jolie-action","last_synced_at":"2025-03-18T03:31:32.795Z","repository":{"id":65159730,"uuid":"563381333","full_name":"fabasoad/setup-jolie-action","owner":"fabasoad","description":"This GitHub action installs Jolie","archived":false,"fork":false,"pushed_at":"2025-03-11T22:03:18.000Z","size":62,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-11T23:19:10.581Z","etag":null,"topics":["github-action","github-actions","jolie","jolie-microservices","programming-language"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fabasoad.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"custom":["https://www.bitcoinqrcodemaker.com/?style=bitcoin\u0026address=145HwyQAcv4vrzUumJhu7nWGAVBysX9jJH\u0026prefix=on","https://paypal.me/fabasoad"],"github":["fabasoad"],"ko_fi":"fabasoad","liberapay":"fabasoad"}},"created_at":"2022-11-08T13:52:07.000Z","updated_at":"2025-03-11T22:03:22.000Z","dependencies_parsed_at":"2023-01-12T14:31:19.649Z","dependency_job_id":"b0aa3194-4b0d-4a6e-8f99-7ec979bde66d","html_url":"https://github.com/fabasoad/setup-jolie-action","commit_stats":{"total_commits":19,"total_committers":5,"mean_commits":3.8,"dds":0.5263157894736843,"last_synced_commit":"5c075c6464765726d391e2ace38ff3fa844c0ecf"},"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabasoad%2Fsetup-jolie-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabasoad%2Fsetup-jolie-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabasoad%2Fsetup-jolie-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabasoad%2Fsetup-jolie-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fabasoad","download_url":"https://codeload.github.com/fabasoad/setup-jolie-action/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243897119,"owners_count":20365512,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["github-action","github-actions","jolie","jolie-microservices","programming-language"],"created_at":"2024-10-08T17:05:34.386Z","updated_at":"2025-03-18T03:31:32.790Z","avatar_url":"https://github.com/fabasoad.png","language":"Shell","funding_links":["https://www.bitcoinqrcodemaker.com/?style=bitcoin\u0026address=145HwyQAcv4vrzUumJhu7nWGAVBysX9jJH\u0026prefix=on","https://paypal.me/fabasoad","https://github.com/sponsors/fabasoad","https://ko-fi.com/fabasoad","https://liberapay.com/fabasoad"],"categories":[],"sub_categories":[],"readme":"# Setup Jolie action\n\n[![Stand With Ukraine](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/badges/StandWithUkraine.svg)](https://stand-with-ukraine.pp.ua)\n![Release](https://img.shields.io/github/v/release/fabasoad/setup-jolie-action?include_prereleases)\n![functional-tests](https://github.com/fabasoad/setup-jolie-action/actions/workflows/functional-tests.yml/badge.svg)\n![security](https://github.com/fabasoad/setup-jolie-action/actions/workflows/security.yml/badge.svg)\n![linting](https://github.com/fabasoad/setup-jolie-action/actions/workflows/linting.yml/badge.svg)\n\nThis action installs [Jolie](https://www.jolie-lang.org).\n\n## Supported OS\n\n\u003c!-- prettier-ignore-start --\u003e\n| OS      |                    |\n|---------|--------------------|\n| Windows | :white_check_mark: |\n| Linux   | :white_check_mark: |\n| macOS   | :white_check_mark: |\n\u003c!-- prettier-ignore-end --\u003e\n\n## Prerequisites\n\nNone.\n\n## Inputs\n\n```yaml\n- uses: fabasoad/setup-jolie-action@v0\n  with:\n    # (Optional) Jolie version. Defaults to the latest version.\n    version: \"1.12.2\"\n    # (Optional) If \"false\" skips installation if jolie is already installed. If\n    # \"true\" installs jolie in any case. Defaults to \"false\".\n    force: \"false\"\n    # (Optional) GitHub token that is used to send requests to GitHub API such\n    # as getting latest release. Defaults to the token provided by GitHub Actions\n    # environment.\n    github-token: \"${{ github.token }}\"\n```\n\n## Outputs\n\n\u003c!-- prettier-ignore-start --\u003e\n| Name      | Description                        | Example |\n|-----------|------------------------------------|---------|\n| installed | Whether jolie was installed or not | `true`  |\n\u003c!-- prettier-ignore-end --\u003e\n\n## Example usage\n\n### Workflow configuration\n\n```yaml\nname: Run on Ubuntu\n\non: push\n\njobs:\n  setup:\n    name: jolie\n    runs-on: ubuntu-latest\n    steps:\n      - uses: fabasoad/setup-jolie-action@v0\n        with:\n          version: \"1.12.1\"\n      - name: Print version\n        run: jolie --version\n```\n\n### Result\n\n```shell\nRun jolie --version\nJolie 1.12.1  (C) 2006-2022 the Jolie developers\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffabasoad%2Fsetup-jolie-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffabasoad%2Fsetup-jolie-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffabasoad%2Fsetup-jolie-action/lists"}