{"id":27721296,"url":"https://github.com/idleberg/setup-playdate-sdk","last_synced_at":"2025-06-21T23:35:04.206Z","repository":{"id":40655427,"uuid":"503914779","full_name":"idleberg/setup-playdate-sdk","owner":"idleberg","description":"A GitHub action that installs the Playdate SDK","archived":false,"fork":false,"pushed_at":"2025-06-04T19:31:46.000Z","size":52,"stargazers_count":10,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-21T23:33:28.311Z","etag":null,"topics":["gamedev","github-action","playdate","playdate-sdk"],"latest_commit_sha":null,"homepage":"https://github.com/marketplace/actions/setup-playdate-sdk","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/idleberg.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}},"created_at":"2022-06-15T20:36:40.000Z","updated_at":"2025-06-04T19:31:49.000Z","dependencies_parsed_at":"2025-04-27T10:04:12.274Z","dependency_job_id":"d3786302-9444-420e-9795-1cdaa9dd632d","html_url":"https://github.com/idleberg/setup-playdate-sdk","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/idleberg/setup-playdate-sdk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idleberg%2Fsetup-playdate-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idleberg%2Fsetup-playdate-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idleberg%2Fsetup-playdate-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idleberg%2Fsetup-playdate-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/idleberg","download_url":"https://codeload.github.com/idleberg/setup-playdate-sdk/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idleberg%2Fsetup-playdate-sdk/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261211678,"owners_count":23125542,"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":["gamedev","github-action","playdate","playdate-sdk"],"created_at":"2025-04-27T10:04:03.507Z","updated_at":"2025-06-21T23:34:59.182Z","avatar_url":"https://github.com/idleberg.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# setup-playdate-sdk\n\n\u003e A GitHub action that installs the Playdate SDK.\n\n[![License](https://img.shields.io/github/license/idleberg/setup-playdate-sdk?style=for-the-badge)](LICENSE)\n[![Version](https://img.shields.io/github/v/release/idleberg/setup-playdate-sdk?style=for-the-badge)](https://github.com/idleberg/setup-playdate-sdk/releases)\n[![Build](https://img.shields.io/github/actions/workflow/status/idleberg/setup-playdate-sdk/default.yml?style=for-the-badge)](https://github.com/idleberg/setup-playdate-sdk/actions)\n\n## Usage\n\nConfigure a step that adds the `idleberg/setup-playdate-sdk` action to your workflow. Optionally, you can pass arguments to the action.\n\n```yaml\n- uses: idleberg/setup-playdate-sdk@v3.0.0\n  with: \n    sdk_version: '1.11.1' # this can usually be omitted in favour of latest version\n```\n\n:bulb: **Note:** For security reasons it's recommended to use the commit hash of the [release](https://github.com/idleberg/setup-playdate-sdk/releases) as version identifier\n\nOne use case for this action is to build your game with the Playdate SDK and attach it to a GitHub release.\n\n\u003cdetails\u003e\n\u003csummary\u003e\u003cstrong\u003eExample\u003c/strong\u003e\u003c/summary\u003e\n\n```yaml\nname: Create Release\n\non:\n  push:\n    # Runs whenever a git tag in SemVer pattern is pushed\n    tags:\n      - 'v*.*.*'\n\nenv:\n  BUILD_OUTPUT: my-awesome-game\n\njobs:\n  build:\n    name: Upload Release Asset\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout Code\n        uses: actions/checkout@v2\n\n      - name: Install SDK\n        uses: idleberg/setup-playdate-sdk@v3.0.0\n\n      - name: Build Project\n        run: |\n          # Compiles the project\n          pdc source ${{ env.BUILD_OUTPUT }}.pdx\n\n          # Creates an archive, since the build output is a directory\n          zip -r -9 ${{ env.BUILD_OUTPUT }}-${{ github.ref_name }}.zip ${{ env.BUILD_OUTPUT }}.pdx\n\n      - name: Create Release\n        id: create_release\n        uses: actions/create-release@v1\n        env:\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n        with:\n          tag_name: ${{ github.ref_name }}\n          release_name: ${{ github.ref_name }}\n          draft: false\n          prerelease: false\n\n      - name: Upload Release Asset\n        uses: actions/upload-release-asset@v1\n        env:\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n        with:\n          upload_url: ${{ steps.create_release.outputs.upload_url }}\n          asset_path: ./${{ env.BUILD_OUTPUT }}-${{ github.ref_name }}.zip\n          asset_name: ${{ env.BUILD_OUTPUT }}-${{ github.ref_name }}.zip\n          asset_content_type: application/zip\n```\n\n\u003c/details\u003e\n\n## All options\n\n### List of input options\n\nEvery argument is optional.\n\n| Input         | Description                                   | Default  |\n| ------------- | ----------------------------------------------| -------- |\n| `quiet`       | Quiet mode, suppresses non-error output       | `false`  |\n| `sdk_version` | Specifies the version of the SDK              | `latest` |\n| `set_env_var` | Sets `PLAYDATE_SDK_PATH` environment variable | `true`   |\n| `update_path` | Updates `PATH` environment variable           | `true`   |\n\n\n## Related\n\n- [create-playdate-release](https://github.com/marketplace/actions/create-playdate-release)\n\n## License\n\nThis work is licensed under [The MIT License](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fidleberg%2Fsetup-playdate-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fidleberg%2Fsetup-playdate-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fidleberg%2Fsetup-playdate-sdk/lists"}