{"id":20561215,"url":"https://github.com/lightarrowsexe/subkt-build","last_synced_at":"2026-03-11T00:03:10.276Z","repository":{"id":262620424,"uuid":"887834214","full_name":"LightArrowsEXE/subkt-build","owner":"LightArrowsEXE","description":"A GitHub action to build SubKt projects","archived":false,"fork":false,"pushed_at":"2024-11-13T12:22:40.000Z","size":8,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-06T07:51:31.825Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/LightArrowsEXE.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}},"created_at":"2024-11-13T11:15:09.000Z","updated_at":"2024-11-13T12:22:43.000Z","dependencies_parsed_at":"2024-11-13T12:24:20.797Z","dependency_job_id":"4a93c158-5029-41a2-8eae-ad16d939ee21","html_url":"https://github.com/LightArrowsEXE/subkt-build","commit_stats":null,"previous_names":["lightarrowsexe/gh-actions-subkt-build"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/LightArrowsEXE/subkt-build","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LightArrowsEXE%2Fsubkt-build","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LightArrowsEXE%2Fsubkt-build/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LightArrowsEXE%2Fsubkt-build/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LightArrowsEXE%2Fsubkt-build/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LightArrowsEXE","download_url":"https://codeload.github.com/LightArrowsEXE/subkt-build/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LightArrowsEXE%2Fsubkt-build/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30362722,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-10T21:41:54.280Z","status":"ssl_error","status_checked_at":"2026-03-10T21:40:59.357Z","response_time":106,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":[],"created_at":"2024-11-16T03:57:22.421Z","updated_at":"2026-03-11T00:03:10.240Z","avatar_url":"https://github.com/LightArrowsEXE.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# SubKt Builder\n\nAutomatically build [SubKt](https://github.com/TypesettingTools/SubKt) projects.\n\n## Usage\n\nThe `subkt-builder` action\nis used to build [SubKt](https://github.com/TypesettingTools/SubKt) projects.\nIt works by resolving the dependencies\nof the `mux` (or other specified) task\nand running them,\nreturning the artifacts as build outputs.\n\nTo use the action,\ncreate a basic workflow file:\n\n```yaml\n# .github/workflows/subkt-build.yml\nname: Build SubKt Project\n\non:\n  push:\n    paths:\n      - \"**/*.ass\"\n  pull_request:\n    paths:\n      - \"**/*.ass\"\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v4\n      - uses: LightArrowsEXE/subkt-builder@v1\n        with:\n          # Optional: specify a different mux task (default: 'mux')\n          mux-task: \"mux\"\n          # Optional: only build episodes with changes (default: false)\n          incremental: true\n```\n\nIf you want to run specific tasks directly\nwithout dependency resolution:\n\n```yaml\n# .github/workflows/subkt-build.yml\njobs:\n  build:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v4\n      - uses: LightArrowsEXE/subkt-builder@v1\n        with:\n          # Empty mux-task disables dependency resolution\n          mux-task: \"\"\n          # Comma-separated list of task types to run (e.g., 'merge,swap' will run these tasks for all episodes)\n          tasks: \"merge,swap\"\n```\n\n## Parameters\n\nThe following parameters are available:\n\n| Parameter     | Required | Description                                                                                          |\n| ------------- | -------- | ---------------------------------------------------------------------------------------------------- |\n| `mux-task`    | No       | The muxing task to execute the dependencies of. If empty, no dependency resolution will be performed |\n| `incremental` | No       | Only build episodes with changes (only used if mux-task is specified)                                |\n| `tasks`       | No       | Comma-separated list of task types to run (e.g., 'merge,swap' will run these tasks for all episodes) |\n\n## Outputs\n\nThe action uploads all files\nfrom the `build/` directory\nas artifacts,\nexcluding temporary files\nand Gradle-specific directories.\nThese artifacts can be downloaded\nfrom the GitHub Actions interface\nor used in subsequent workflow steps.\n\nExample of accessing the artifacts\nin a subsequent job:\n\n```yaml\njobs:\n  build:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v4\n      - uses: LightArrowsEXE/subkt-builder@v1\n        with:\n          tasks: \"merge,swap\"\n\n  deploy:\n    needs: build\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/download-artifact@v4\n        with:\n          name: build-artifacts\n          path: build\n      # Use the artifacts...\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flightarrowsexe%2Fsubkt-build","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flightarrowsexe%2Fsubkt-build","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flightarrowsexe%2Fsubkt-build/lists"}