{"id":20849461,"url":"https://github.com/ysdragon/ring-action","last_synced_at":"2026-02-16T23:47:26.934Z","repository":{"id":259812561,"uuid":"879482362","full_name":"ysdragon/ring-action","owner":"ysdragon","description":"A GitHub Action that compiles Ring Programming Language projects","archived":false,"fork":false,"pushed_at":"2025-12-07T14:48:18.000Z","size":88,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-12-07T15:54:19.060Z","etag":null,"topics":["github-actions","ring","ring-programming-language"],"latest_commit_sha":null,"homepage":"","language":null,"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/ysdragon.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-10-28T01:49:53.000Z","updated_at":"2025-12-07T14:48:21.000Z","dependencies_parsed_at":"2024-10-28T05:49:28.422Z","dependency_job_id":"301331b8-d437-46d1-815a-46b6f6a14b14","html_url":"https://github.com/ysdragon/ring-action","commit_stats":null,"previous_names":["ysdragon/ring-action"],"tags_count":16,"template":false,"template_full_name":null,"purl":"pkg:github/ysdragon/ring-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ysdragon%2Fring-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ysdragon%2Fring-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ysdragon%2Fring-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ysdragon%2Fring-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ysdragon","download_url":"https://codeload.github.com/ysdragon/ring-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ysdragon%2Fring-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29524697,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-16T21:45:09.491Z","status":"ssl_error","status_checked_at":"2026-02-16T21:44:58.452Z","response_time":115,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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-actions","ring","ring-programming-language"],"created_at":"2024-11-18T03:05:11.930Z","updated_at":"2026-02-16T23:47:26.929Z","avatar_url":"https://github.com/ysdragon.png","language":null,"readme":"\u003cdiv align=\"center\"\u003e\n\n# Ring Action\n\n![GitHub release (latest by date)](https://img.shields.io/github/v/release/ysdragon/ring-action)\n![GitHub](https://img.shields.io/github/license/ysdragon/ring-action)\n\nA GitHub Action that compiles [Ring](https://ring-lang.net/) Programming Language projects.\n\u003c/div\u003e\n\n## Features\n\n- Compile Ring source files\n- Generate executable files using Ring2EXE\n- Install packages from RingPM\n- Flexible version management:\n  - Linux/macOS: Build custom Ring versions from source\n  - Windows: Pre-built Ring releases\n- Fast and lightweight\n- Cross-platform support (Windows, macOS, Linux)\n\n## Platform \u0026 Architecture Support\n\n| Platform | Architecture      | Supported | Notes                        |\n|----------|------------------|-----------|------------------------------|\n| Linux    | x86_64 / amd64   | ✅        | Full support                 |\n| Linux    | arm64            | ✅        | Full support                 |\n| Linux    | i386             | ❌        | Not supported                |\n| Linux    | riscv64          | ❌        | Not supported                |\n| Linux    | loongarch64      | ❌        | Not supported                |\n| macOS    | Intel (x86_64)   | ✅        | Full support                 |\n| macOS    | Apple Silicon    | ✅        | Full support      |\n| Windows  | x86_64 / amd64   | ✅        | Pre-built binaries only      |\n| Windows  | i386 / x86       | ✅        | Pre-built binaries only      |\n| Windows  | arm64            | ❌        | Not supported                |\n\n## Inputs\n\n| Input | Required | Default | Description |\n|-------|----------|---------|-------------|\n| `file` | ❌ | - | Path to the Ring source file to run/build |\n| `command` | ❌ | - | Custom command to execute |\n| `output_exe` | ❌ | `false` | Set to `true` to generate an executable using Ring2EXE |\n| `args` | ❌ | - | Additional arguments to pass to Ring or Ring2EXE |\n| `ring_packages` | ❌ | - | Space-separated list of packages to install from RingPM |\n| `version` | ❌ | `v1.26` | Ring compiler version to use |\n| `arch` | ❌ | `x64` | Target architecture for MSVC compiler on Windows (`x64`, `x86`, `arm64`) |\n| `cache` | ❌ | `true` | Set to `false` to disable caching of the Ring installation |\n\n## Usage Examples\n\n### Simple example \n \n ```yaml\n uses: ysdragon/ring-action@v1.3.4\n with:\n   file: \"program.ring\"\n ```\n\n### Execution command example\n\n```yaml\nuses: ysdragon/ring-action@v1.3.4\nwith:\n  command: \"ring program.ring\"\n```\n \n ### Linux\n\n```yaml\nname: Linux Build\non: [push]\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v4\n      - name: Build Linux executable\n        uses: ysdragon/ring-action@v1.3.4\n        with:\n          file: \"program.ring\"\n          output_exe: \"true\"\n          args: \"-static\"\n```\n\n### macOS (Apple Silicon)\n\n```yaml\nname: macOS (Apple Silicon) Build\non: [push]\n\njobs:\n  build:\n    runs-on: macos-latest\n    steps:\n      - uses: actions/checkout@v4\n      - name: Build macOS Intel app\n        uses: ysdragon/ring-action@v1.3.4\n        with:\n          file: \"program.ring\"\n          output_exe: \"true\"\n```\n\n### macOS (Intel)\n\n```yaml\nname: macOS (Intel) Build\non: [push]\n\njobs:\n  build:\n    runs-on: macos-13\n    steps:\n      - uses: actions/checkout@v4\n      - name: Build macOS Intel app\n        uses: ysdragon/ring-action@v1.3.4\n        with:\n          file: \"program.ring\"\n          output_exe: \"true\"\n```\n\n### Windows\n\n```yaml\nname: Windows x64 Build\non: [push]\n\njobs:\n  build:\n    runs-on: windows-latest\n    steps:\n      - uses: actions/checkout@v4\n      - name: Build Windows x64 executable\n        uses: ysdragon/ring-action@v1.3.4\n        with:\n          file: \"program.ring\"\n          output_exe: \"true\"\n          args: \"-static\"\n```\n\n### Windows (32-bit)\n\n```yaml\nname: Windows x86 Build\non: [push]\n\njobs:\n  build:\n    runs-on: windows-latest\n    steps:\n      - uses: actions/checkout@v4\n      - name: Build Windows x86 executable\n        uses: ysdragon/ring-action@v1.3.4\n        with:\n          file: \"program.ring\"\n          output_exe: \"true\"\n          arch: \"x86\"\n```\n\n### Cross-Platform Build\n\n```yaml\nname: Cross-Platform Build\non: [push]\n\njobs:\n  build:\n    strategy:\n      matrix:\n        os: [ubuntu-latest, windows-latest, macos-latest]\n    runs-on: ${{ matrix.os }}\n    steps:\n      - uses: actions/checkout@v4\n      - name: Build Ring project\n        uses: ysdragon/ring-action@v1.3.4\n        with:\n          file: \"program.ring\"\n          output_exe: \"true\"\n```\n\n## TODO\n- [ ] Support FreeBSD\n- [ ] Make the project a JavaScript Action\n\n## License\nThis project is open source and available under the [MIT](https://github.com/ysdragon/ring-action/blob/main/LICENSE) License.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fysdragon%2Fring-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fysdragon%2Fring-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fysdragon%2Fring-action/lists"}