{"id":20441899,"url":"https://github.com/armory3d/armory_gh_actions","last_synced_at":"2025-12-02T16:02:17.687Z","repository":{"id":58817058,"uuid":"409500950","full_name":"armory3d/armory_gh_actions","owner":"armory3d","description":"Build armory projects in github workflows","archived":false,"fork":false,"pushed_at":"2022-11-26T01:00:17.000Z","size":420,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-15T20:31:25.858Z","etag":null,"topics":["actions","armory3d","blender","github-actions","kha","krom"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/armory3d.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-09-23T07:59:14.000Z","updated_at":"2022-09-07T21:46:12.000Z","dependencies_parsed_at":"2023-01-22T02:35:26.549Z","dependency_job_id":null,"html_url":"https://github.com/armory3d/armory_gh_actions","commit_stats":{"total_commits":89,"total_committers":1,"mean_commits":89.0,"dds":0.0,"last_synced_commit":"fba85578b53c7306a0c559fb381b5934c24e5c9f"},"previous_names":[],"tags_count":50,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/armory3d%2Farmory_gh_actions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/armory3d%2Farmory_gh_actions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/armory3d%2Farmory_gh_actions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/armory3d%2Farmory_gh_actions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/armory3d","download_url":"https://codeload.github.com/armory3d/armory_gh_actions/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241989845,"owners_count":20053803,"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":["actions","armory3d","blender","github-actions","kha","krom"],"created_at":"2024-11-15T09:36:02.130Z","updated_at":"2025-12-02T16:02:17.595Z","avatar_url":"https://github.com/armory3d.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"Armory3D Github Actions\n=======================\nThis action sets up a [armory3d](https://armory3d.org/) environment to build projects in your github workflows.\n\n# Usage\n\nSee [action.yml](action.yml)\n\n## Inputs\n\n| Name | Description | Required | Default |\n| - | - | - | - |\n| `blend` | Main blend file | Yes | |\n| `build` | Build exporter name | No | The active [armory exporter](.github/exporter-presets.png) |\n| `publish` | Publish exporter name | No | The active [armory exporter](.github/exporter-presets.png) |\n| `blender` | Blender version ([snap](https://snapcraft.io/blender)) | No | `3.3lts/stable` |\n| `armsdk_url` | URL of to the armsdk repository | No | `https://github.com/armory3d/armsdk`\n| `armsdk_ref` | Named branch, tag, or SHA of the armsdk repository | No | `main`\n\nEither `build` or `publish` must be given the name of an *exporter* preset defined in [`Render Properties - Armory Exporter`](exporter-presets.png). It can have any name, but is most likely named after the build target.\n\n## Outputs\n\n| Name | Description | Default |\n| - | - | - |\n| `code` | Exit code | |\n| `time` | Duration ms | |\n| `result` | stdout data |  |\n| `error` | stderr  data |  |\n\n---\n\nSee: [.github/workflows/empty-project.yml](.github/workflows/empty-project.yml)\n\n### Publish project\n```yaml\njobs:\n  build:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v3\n      - name: Publish\n        uses: armory3d/armory_gh_actions@v0.1.15\n        with:\n          blend: awesome.blend # Main blend file\n          publish: html5 # Name of the armory exporter\n```\n\n### Custom blender, armsdk version\n```yaml\njobs:\n  build:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v3\n      - name: Publish\n        uses: armory3d/armory_gh_actions@v0.1.15\n          with:\n            blend: awesome.blend # Main blend file\n            publish: linux # Name of the armory exporter\n            blender: latest/candidate  # Blender snap package version\n            armsdk_ref: 22.09 # Armsdk version\n```\n\n### Cache armsdk to speedup builds, print build results\n```yaml\njobs:\n  build:\n    runs-on: ubuntu-latest\n    env:\n      armsdk_version: 22.09\n    steps:\n      - uses: actions/checkout@v3\n      - name: Cache armsdk\n        uses: actions/cache@v2\n        env:\n          armsdk-cache-version: ${{ env.armsdk_version }}\n        with:\n          path: _armsdk_\n          key: armsdk-cache-${{ env.armsdk-cache-version }}\n      - name: Build\n        id: awesome\n        uses: armory3d/armory_gh_actions@v0.1.15\n        with:\n          blend: awesome.blend\n          publish: html5\n          armsdk_ref: ${{ env.armsdk_version }}\n      - name: Result\n        run: |\n          echo \"Code: ${{ steps.awesome.outputs.code }}\"\n          echo \"Time: ${{ steps.awesome.outputs.time }}\"\n```\n\n---\n\n[![test](https://github.com/armory3d/armory_gh_actions/actions/workflows/test.yml/badge.svg)](https://github.com/armory3d/armory_gh_actions/actions/workflows/test.yml)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farmory3d%2Farmory_gh_actions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farmory3d%2Farmory_gh_actions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farmory3d%2Farmory_gh_actions/lists"}