{"id":30767648,"url":"https://github.com/bhznjns/pystand-build","last_synced_at":"2026-02-10T21:32:18.456Z","repository":{"id":309017562,"uuid":"1034799044","full_name":"BHznJNs/pystand-build","owner":"BHznJNs","description":"Automatically deploy your Python project with PyStand!","archived":false,"fork":false,"pushed_at":"2025-11-02T02:44:21.000Z","size":26,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-11-02T04:15:19.459Z","etag":null,"topics":["continuous-deployment","pystand","python-deployment"],"latest_commit_sha":null,"homepage":"","language":"Python","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/BHznJNs.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,"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":"2025-08-09T02:31:48.000Z","updated_at":"2025-11-02T02:42:41.000Z","dependencies_parsed_at":"2025-08-09T10:21:43.473Z","dependency_job_id":null,"html_url":"https://github.com/BHznJNs/pystand-build","commit_stats":null,"previous_names":["bhznjns/pystand-build"],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/BHznJNs/pystand-build","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BHznJNs%2Fpystand-build","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BHznJNs%2Fpystand-build/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BHznJNs%2Fpystand-build/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BHznJNs%2Fpystand-build/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BHznJNs","download_url":"https://codeload.github.com/BHznJNs/pystand-build/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BHznJNs%2Fpystand-build/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29317956,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-10T20:44:44.282Z","status":"ssl_error","status_checked_at":"2026-02-10T20:44:43.393Z","response_time":65,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["continuous-deployment","pystand","python-deployment"],"created_at":"2025-09-04T20:07:12.203Z","updated_at":"2026-02-10T21:32:18.335Z","avatar_url":"https://github.com/BHznJNs.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PyStand build\n\nAutomatically deploy your Python project with PyStand!\n\n## Use Example\n\n```yaml\njobs:\n  build:\n    runs-on: windows-latest\n      - name: Checkout\n        uses: actions/checkout@v4\n\n      - name: Build Python Application Standalone Package\n        id: pystand-build\n        uses: BHznJNs/pystand-build@release-6\n        with:\n          application-name: \"YourApplicationName\"\n          python-version: \"3.11.9\"\n          requirements-path: \"backend/requirements.txt\"\n          included-files: |\n            backend/ # this is the python source directory\n            # there can be other assets files or directories here\n\n      - name: Create Zip Archive\n        shell: bash\n        run: |\n          build_path=\"${{ steps.pystand-build.outputs.build-directory }}\"\n          (cd \"$build_path\" \u0026\u0026 7z a -tzip \"$RUNNER_TEMP/YouApplicationName.zip\" .)\n\n      # upload package with `${{ runner.temp }}/YouApplicationName.zip`\n```\n\n## Parameters\n\n### Inputs\n\n| Parameter            | Type   | Required | Default      | Description                                                                                                                                                                                             |\n| -------------------- | ------ | -------- | ------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `application-name`   | string | ✔        | —            | The application name of standalone package. |\n| `application-type`   | string | ✖        | `GUI`        | Application type. Must be `GUI` or `CLI`. |\n| `python-version`     | string | ✖        | `3.11.9`     | The target Python embedded version to use. |\n| `pystand-entry-file` | string | ✖        | `PyStand.py` | The entry file path for PyStand. |\n| `requirements-path`  | string | ✔        | —            | The path to the requirements.txt file. |\n| `included-files`     | string | ✔        | —            | Newline-separated list of files/directories.\u003cbr\u003e- **Directories** → copied to `\u003cbuild-directory\u003e/\u003cdir-name\u003e`\u003cbr\u003e- **Files** → copied to the root of `\u003cbuild-directory\u003e` |\n\n### Outputs\n\n| Name              | Type   | Description |\n|-------------------|--------|-------------|\n| `build-directory` | string | Absolute path to the fully-prepared build directory.\u003cbr\u003eUse it for archiving, installer generation, etc.\u003cbr\u003eRetrieve with `${{ steps.\u003cid\u003e.outputs.build-directory }}`. |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbhznjns%2Fpystand-build","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbhznjns%2Fpystand-build","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbhznjns%2Fpystand-build/lists"}