{"id":5803698,"name":"vfrascello/XCode-Deploy","ecosystem":"actions","description":"Archive, Export, and Upload a build to App Store Connect (TestFlight)","homepage":"","licenses":"mit","normalized_licenses":["MIT"],"repository_url":"https://github.com/vfrascello/XCode-Deploy","keywords_array":["apple","appstoreconnect","archive","cd","cicd","continuous-deployment","testflight","xcode"],"namespace":"vfrascello","versions_count":17,"first_release_published_at":"2022-09-18T20:39:30.000Z","latest_release_published_at":"2022-10-10T18:10:46.000Z","latest_release_number":"v1.5","last_synced_at":"2026-05-08T16:31:57.445Z","created_at":"2023-01-04T14:40:00.826Z","updated_at":"2026-05-08T16:31:57.445Z","registry_url":"https://github.com/vfrascello/XCode-Deploy","install_command":null,"documentation_url":null,"metadata":{"name":"XCode-Deploy","description":"Archive, Export, and Upload a build to App Store Connect (TestFlight)","author":"Vincent Frascello","branding":{"icon":"upload-cloud","color":"yellow"},"inputs":{"xcode-version":{"description":"The version of XCode to use. Defaults to the latest stable version.","requred":false,"default":"latest-stable"},"configuration":{"description":"Configuration (default: Release)","required":true,"default":"Release"},"scheme":{"description":"Leave blank and Action will search for default scheme.","required":false,"default":""},"path-to-export-options":{"description":"Relative path and filename to ExportOptions.plist","required":true,"default":"ExportOptions.plist"},"update-build":{"description":"Sets Build Number to # of commits.","required":true,"default":true,"type":"choice","options":[true,false]},"install-pods":{"description":"Run Pod Install","required":true,"default":false,"type":"choice","options":[true,false]},"resolve-package-dependencies":{"description":"Resolve Package Dependencies","required":true,"default":false,"type":"choice","options":[true,false]},"distribution-certificate-p12":{"description":"base64 representation of the distribution certificate.","required":true},"distribution-certificate-password":{"description":"password to unlock the distribution certificate.","required":true},"app-store-provisioning-profile":{"description":"base64 representation of the provisioning profile.","required":true},"auth-key-id":{"description":"App Store Connect API Auth Key ID.","required":true},"auth-key-issuer-id":{"description":"App Store Connect API Issuer ID.","required":true},"auth-key-p8":{"description":"base64 representation of the App Store Connect AuthKey.","required":true}},"runs":{"using":"composite","steps":[{"name":"Sanitize input","shell":"bash","env":{"SCHEME":"${{ inputs.scheme }}","CONFIGURATION":"${{ inputs.configuration }}","PATH_TO_EXPORT_OPTIONS":"${{ inputs.path-to-export-options }}"},"run":"echo \"[XCode-Deploy]: Checking Input for invalid characters...\"\nif [[ \"$SCHEME\" == ${SCHEME//[^a-zA-Z0-9_\\.- ]/} ]] \u0026\u0026 \\\n[[ \"$CONFIGURATION\" == ${CONFIGURATION//[^a-zA-Z0-9_\\.- ]/} ]] \u0026\u0026 \\\n[[ \"$PATH_TO_EXPORT_OPTIONS\" == ${PATH_TO_EXPORT_OPTIONS//^[a-zA-Z0-9](?:[a-zA-Z0-9 ._-]*[a-zA-Z0-9])?\\.[a-zA-Z0-9_-]+$/} ]]; then\necho \"Inputs OK\"\n  exit 0\n  else\n  echo \"Bad Inputs\"\nexit 1\nfi\n"},{"name":"Checkout","uses":"actions/checkout@v3","with":{"fetch-depth":0}},{"name":"Determine File To Build","shell":"bash","run":"echo \"[XCode-Deploy]: Determining file to build...\"\nif [ \"`ls -A | grep -i \\\\.xcworkspace\\$`\" ]; then filetype_parameter=\"workspace\" \\\n\u0026\u0026 file_to_build=\"`ls -A | grep -i \\\\.xcworkspace\\$`\"; \\\nelse filetype_parameter=\"project\" \u0026\u0026 file_to_build=\"`ls -A | grep -i \\\\.xcodeproj\\$`\"; fi\nfile_to_build=`echo $file_to_build | awk '{$1=$1;print}'`\necho \"TYPE=$filetype_parameter\" \u003e\u003e $GITHUB_ENV\necho \"FILE_TO_BUILD=$file_to_build\" \u003e\u003e $GITHUB_ENV\necho \"PROJECT_NAME=$(echo \"$file_to_build\" | cut -f 1 -d '.')\" \u003e\u003e $GITHUB_ENV\n"},{"name":"Setup Pods","if":"inputs.install-pods == 'true'","shell":"bash","run":"echo \"[XCode-Deploy]: Installing Pods...\"\npod install\n"},{"name":"Resolve Package Dependencies","if":"inputs.resolve-package-dependencies == 'true'","shell":"bash","run":"echo \"[XCode-Deploy]: Resolving Package Dependencies...\"\nxcodebuild -resolvePackageDependencies -clonedSourcePackagesDirPath .\n"},{"name":"Setup Scheme","shell":"bash","run":"echo \"[XCode-Deploy]: Searching for default Scheme...\"\nif [ \"${{ inputs.scheme }}\" == \"\" ]; then\n  scheme_list=$(xcodebuild -list -json | tr -d \"\\n\")\n  scheme=$(echo $scheme_list | ruby -e \"require 'json'; puts JSON.parse(STDIN.gets)['project']['targets'][0]\")\n  echo $scheme | cat \u003escheme\n  echo \"[XCode-Deploy]: Using default scheme: $scheme...\"\nelse \n  echo \"[XCode-Deploy]: Using provided Scheme: ${{ inputs.scheme }}\"\n  scheme=${{ inputs.scheme }}\nfi\necho \"SCHEME=$scheme\" \u003e\u003e $GITHUB_ENV\n"},{"name":"Import Certificates","uses":"apple-actions/import-codesign-certs@v1","id":"codesign","with":{"p12-file-base64":"${{ inputs.distribution-certificate-p12 }}","p12-password":"${{ inputs.distribution-certificate-password }}","keychain":"codesign"}},{"name":"Install App Store Profile","uses":"akiojin/install-provisioning-profile-github-action@v1.0","with":{"base64":"${{ inputs.app-store-provisioning-profile }}"}},{"name":"Select Xcode","uses":"maxim-lobanov/setup-xcode@v1.4.1","with":{"xcode-version":"${{ inputs.xcode-version }}"}},{"name":"Increment Build Number","shell":"bash","if":"inputs.update-build == 'true'","run":"echo \"[XCode-Deploy]: Updating Build Number to commit depth...\"\ncount=`git rev-list --count HEAD`\nxcrun agvtool new-version -all $count\n"},{"name":"Build and Archive","uses":"sersoft-gmbh/xcodebuild-action@v2","with":{"action":"archive","${{ env.TYPE }}":"${{ env.FILE_TO_BUILD }}","scheme":"${{ env.SCHEME }}","sdk":"iphoneos","build-settings":"-archivePath ${{ env.PROJECT_NAME }}.xcarchive\n","derived-data-path":"build/derivedData","destination":"generic/platform=iOS","configuration":"${{ inputs.configuration }}"}},{"name":"Get App Store Connect API Key","uses":"timheuer/base64-to-file@v1.1","with":{"fileName":"AuthKey_${{ inputs.auth-key-id }}.p8","fileDir":"${{ github.workspace }}/private_keys","encodedString":"${{ inputs.auth-key-p8 }}"}},{"name":"Export Xcode archive","shell":"bash","run":"echo \"[XCode-Deploy]: Exporting archive using xcodebuild...\"\nxcodebuild -exportArchive -verbose \\\n-sdk iphoneos \\\n-archivePath ${{ github.workspace }}/${{ env.PROJECT_NAME }}.xcarchive  \\\n-exportOptionsPlist ${{ github.workspace }}/${{ inputs.path-to-export-options }} \\\n-exportPath ${{ github.workspace }} \\          -authenticationKeyIssuerID ${{ inputs.auth-key-issuer-id }} \\\n-authenticationKeyID ${{ inputs.auth-key-id }} \\\n-authenticationKeyPath ${{ github.workspace }}/private_keys/AuthKey_${{ inputs.auth-key-id }}.p8 \\\n"},{"name":"Upload to App Store Connect","shell":"bash","run":"echo \"[XCode-Deploy]: Uploading archive using altool...\"\nxcrun altool --upload-app -f ${{ github.workspace }}/${{ env.PROJECT_NAME }}.ipa -t iOS \\\n--apiIssuer ${{ inputs.auth-key-issuer-id }} --apiKey ${{ inputs.auth-key-id }}\n"},{"name":"Cleanup","shell":"bash","run":"echo \"[XCode-Deploy]: Removing Keychain and private_keys folder...\"\nsecurity delete-keychain codesign.keychain\nrm  -rf ${{ github.workspace }}/private_keys || true"}]},"default_branch":"main","path":null},"repo_metadata":{"uuid":"538234395","full_name":"vfrascello/XCode-Deploy","owner":"vfrascello","description":"A Github Action for Archiving, Exporting, and Uploading a build to App Store Connect (TestFlight)","archived":false,"fork":false,"pushed_at":"2023-05-31T00:58:14.000Z","size":19,"stargazers_count":6,"open_issues_count":3,"forks_count":5,"subscribers_count":1,"default_branch":"main","last_synced_at":"2023-07-13T08:27:14.600Z","etag":null,"topics":["apple","appstoreconnect","archive","cd","cicd","continuous-deployment","testflight","xcode"],"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/vfrascello.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}},"created_at":"2022-09-18T20:35:44.000Z","updated_at":"2023-05-31T00:44:13.000Z","dependencies_parsed_at":"2023-01-04T12:31:12.984Z","dependency_job_id":null,"html_url":"https://github.com/vfrascello/XCode-Deploy","commit_stats":{"total_commits":6,"total_committers":2,"mean_commits":3.0,"dds":0.5,"last_synced_commit":"22c52153e7c96abc9cda0bfaf987acef85f70c58"},"previous_names":[],"tags_count":17,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vfrascello%2FXCode-Deploy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vfrascello%2FXCode-Deploy/tags","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vfrascello%2FXCode-Deploy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vfrascello","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":145709601,"owners_count":6278965,"icon_url":"https://github.com/github.png","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"},"owner_record":{"login":"vfrascello","name":"Vincent Frascello","uuid":"59906016","kind":"user","description":"iOS Developer, Chemical Engineer and Photographer. ","email":"","website":"vincentfrascello.com","location":"Oakland, CA","twitter":null,"company":"Detroit Labs","icon_url":"https://avatars.githubusercontent.com/u/59906016?u=b16e383d4df0524bc6f7df4d68b7a9c66c02fc0a\u0026v=4","repositories_count":5,"last_synced_at":"2023-03-08T19:05:34.295Z","metadata":{"has_sponsors_listing":false},"html_url":"https://github.com/vfrascello","created_at":"2022-11-18T09:23:37.923Z","updated_at":"2023-03-08T19:05:34.303Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vfrascello","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vfrascello/repositories"},"tags":[{"name":"v1.5","sha":"22c52153e7c96abc9cda0bfaf987acef85f70c58","kind":"tag","published_at":"2022-10-10T18:10:46.000Z","download_url":"https://codeload.github.com/vfrascello/XCode-Deploy/tar.gz/v1.5","html_url":"https://github.com/vfrascello/XCode-Deploy/releases/tag/v1.5","dependencies_parsed_at":"2023-06-01T11:25:28.801Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vfrascello%2FXCode-Deploy/tags/v1.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vfrascello%2FXCode-Deploy/tags/v1.5/manifests"},{"name":"v1.4","sha":"740fe769c18c4d700c20f368e4114a624993d07f","kind":"tag","published_at":"2022-09-19T15:04:52.000Z","download_url":"https://codeload.github.com/vfrascello/XCode-Deploy/tar.gz/v1.4","html_url":"https://github.com/vfrascello/XCode-Deploy/releases/tag/v1.4","dependencies_parsed_at":"2023-06-01T11:25:29.560Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vfrascello%2FXCode-Deploy/tags/v1.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vfrascello%2FXCode-Deploy/tags/v1.4/manifests"},{"name":"v1.3","sha":"c0d8f32b29d1e8f38d02b986f981b4f82e7ce40e","kind":"tag","published_at":"2022-09-18T22:48:56.000Z","download_url":"https://codeload.github.com/vfrascello/XCode-Deploy/tar.gz/v1.3","html_url":"https://github.com/vfrascello/XCode-Deploy/releases/tag/v1.3","dependencies_parsed_at":"2023-05-30T23:27:32.816Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vfrascello%2FXCode-Deploy/tags/v1.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vfrascello%2FXCode-Deploy/tags/v1.3/manifests"},{"name":"v1.2","sha":"1f57aa765ece46b5a4d07ecf5833eed3b0a1c1c0","kind":"tag","published_at":"2022-09-18T22:44:09.000Z","download_url":"https://codeload.github.com/vfrascello/XCode-Deploy/tar.gz/v1.2","html_url":"https://github.com/vfrascello/XCode-Deploy/releases/tag/v1.2","dependencies_parsed_at":"2023-05-30T23:27:33.469Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vfrascello%2FXCode-Deploy/tags/v1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vfrascello%2FXCode-Deploy/tags/v1.2/manifests"},{"name":"v1.1","sha":"1f57aa765ece46b5a4d07ecf5833eed3b0a1c1c0","kind":"tag","published_at":"2022-09-18T22:42:06.000Z","download_url":"https://codeload.github.com/vfrascello/XCode-Deploy/tar.gz/v1.1","html_url":"https://github.com/vfrascello/XCode-Deploy/releases/tag/v1.1","dependencies_parsed_at":"2023-05-30T23:27:34.228Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vfrascello%2FXCode-Deploy/tags/v1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vfrascello%2FXCode-Deploy/tags/v1.1/manifests"},{"name":"v1.11","sha":"f09b1fa7fbbaa3751912ab8ba43524199e2b0c33","kind":"tag","published_at":"2022-09-18T22:27:34.000Z","download_url":"https://codeload.github.com/vfrascello/XCode-Deploy/tar.gz/v1.11","html_url":"https://github.com/vfrascello/XCode-Deploy/releases/tag/v1.11","dependencies_parsed_at":"2023-05-30T23:27:28.911Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vfrascello%2FXCode-Deploy/tags/v1.11","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vfrascello%2FXCode-Deploy/tags/v1.11/manifests"},{"name":"v1.10","sha":"31857ded1fdef08aad1b64de9e5b45d4dbaddd4f","kind":"tag","published_at":"2022-09-18T22:03:16.000Z","download_url":"https://codeload.github.com/vfrascello/XCode-Deploy/tar.gz/v1.10","html_url":"https://github.com/vfrascello/XCode-Deploy/releases/tag/v1.10","dependencies_parsed_at":"2023-05-30T23:27:30.272Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vfrascello%2FXCode-Deploy/tags/v1.10","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vfrascello%2FXCode-Deploy/tags/v1.10/manifests"},{"name":"v1.09","sha":"3bdf60b447f54fc39bc408c850f38c0b9db2bf36","kind":"tag","published_at":"2022-09-18T21:56:32.000Z","download_url":"https://codeload.github.com/vfrascello/XCode-Deploy/tar.gz/v1.09","html_url":"https://github.com/vfrascello/XCode-Deploy/releases/tag/v1.09","dependencies_parsed_at":"2023-05-30T23:27:30.714Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vfrascello%2FXCode-Deploy/tags/v1.09","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vfrascello%2FXCode-Deploy/tags/v1.09/manifests"},{"name":"v1.08","sha":"e892b08be56ce3c118f747a2114820b3a1cd326d","kind":"tag","published_at":"2022-09-18T21:40:21.000Z","download_url":"https://codeload.github.com/vfrascello/XCode-Deploy/tar.gz/v1.08","html_url":"https://github.com/vfrascello/XCode-Deploy/releases/tag/v1.08","dependencies_parsed_at":"2023-05-30T23:27:31.068Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vfrascello%2FXCode-Deploy/tags/v1.08","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vfrascello%2FXCode-Deploy/tags/v1.08/manifests"},{"name":"v1.07","sha":"4885a90c34015bb0ee0bc964278e815877427ba4","kind":"tag","published_at":"2022-09-18T21:29:38.000Z","download_url":"https://codeload.github.com/vfrascello/XCode-Deploy/tar.gz/v1.07","html_url":"https://github.com/vfrascello/XCode-Deploy/releases/tag/v1.07","dependencies_parsed_at":"2023-05-30T23:27:31.360Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vfrascello%2FXCode-Deploy/tags/v1.07","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vfrascello%2FXCode-Deploy/tags/v1.07/manifests"},{"name":"v1.06","sha":"8f9e82a7685e89358862e0b84b6c27c573a11cf5","kind":"tag","published_at":"2022-09-18T21:21:44.000Z","download_url":"https://codeload.github.com/vfrascello/XCode-Deploy/tar.gz/v1.06","html_url":"https://github.com/vfrascello/XCode-Deploy/releases/tag/v1.06","dependencies_parsed_at":"2023-05-30T23:27:31.682Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vfrascello%2FXCode-Deploy/tags/v1.06","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vfrascello%2FXCode-Deploy/tags/v1.06/manifests"},{"name":"v1.05","sha":"a37f86c41f4236f941cf3aea69f212afa2f7b74f","kind":"tag","published_at":"2022-09-18T21:18:35.000Z","download_url":"https://codeload.github.com/vfrascello/XCode-Deploy/tar.gz/v1.05","html_url":"https://github.com/vfrascello/XCode-Deploy/releases/tag/v1.05","dependencies_parsed_at":"2023-05-30T23:27:32.153Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vfrascello%2FXCode-Deploy/tags/v1.05","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vfrascello%2FXCode-Deploy/tags/v1.05/manifests"},{"name":"v1.04","sha":"9b75051187d901f78b4a87e4ce4ba0453342bcd8","kind":"tag","published_at":"2022-09-18T21:13:44.000Z","download_url":"https://codeload.github.com/vfrascello/XCode-Deploy/tar.gz/v1.04","html_url":"https://github.com/vfrascello/XCode-Deploy/releases/tag/v1.04","dependencies_parsed_at":"2023-05-30T23:27:32.395Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vfrascello%2FXCode-Deploy/tags/v1.04","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vfrascello%2FXCode-Deploy/tags/v1.04/manifests"},{"name":"v1.03","sha":"4357f0ffe2ea058c5ad9fca4e33a65343017eb97","kind":"tag","published_at":"2022-09-18T21:06:36.000Z","download_url":"https://codeload.github.com/vfrascello/XCode-Deploy/tar.gz/v1.03","html_url":"https://github.com/vfrascello/XCode-Deploy/releases/tag/v1.03","dependencies_parsed_at":"2023-05-30T23:27:33.221Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vfrascello%2FXCode-Deploy/tags/v1.03","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vfrascello%2FXCode-Deploy/tags/v1.03/manifests"},{"name":"v1.02","sha":"655839f4dbbe6d5f88f6f2b845dc6c8c1dfc12e3","kind":"tag","published_at":"2022-09-18T20:59:49.000Z","download_url":"https://codeload.github.com/vfrascello/XCode-Deploy/tar.gz/v1.02","html_url":"https://github.com/vfrascello/XCode-Deploy/releases/tag/v1.02","dependencies_parsed_at":"2023-05-30T23:27:33.822Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vfrascello%2FXCode-Deploy/tags/v1.02","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vfrascello%2FXCode-Deploy/tags/v1.02/manifests"},{"name":"v1.01","sha":"5849b02bfbdec94a3ae3e95480a366cc817e14f2","kind":"tag","published_at":"2022-09-18T20:54:01.000Z","download_url":"https://codeload.github.com/vfrascello/XCode-Deploy/tar.gz/v1.01","html_url":"https://github.com/vfrascello/XCode-Deploy/releases/tag/v1.01","dependencies_parsed_at":"2023-05-30T23:27:34.579Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vfrascello%2FXCode-Deploy/tags/v1.01","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vfrascello%2FXCode-Deploy/tags/v1.01/manifests"},{"name":"v1","sha":"5af334b7f998e949766e5e945701b384753f5d5d","kind":"tag","published_at":"2022-09-18T20:39:30.000Z","download_url":"https://codeload.github.com/vfrascello/XCode-Deploy/tar.gz/v1","html_url":"https://github.com/vfrascello/XCode-Deploy/releases/tag/v1","dependencies_parsed_at":"2023-05-30T23:27:35.005Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vfrascello%2FXCode-Deploy/tags/v1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vfrascello%2FXCode-Deploy/tags/v1/manifests"}]},"repo_metadata_updated_at":"2023-07-14T09:16:39.567Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":0,"rankings":{"downloads":null,"dependent_repos_count":42.858974907023466,"dependent_packages_count":0.0,"stargazers_count":21.93818663702817,"forks_count":23.73787030308212,"average":22.133757961783438},"purl":"pkg:githubactions/vfrascello/XCode-Deploy","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/vfrascello/XCode-Deploy","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/vfrascello/XCode-Deploy","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/vfrascello/XCode-Deploy/dependencies","status":null,"funding_links":[],"critical":null,"issue_metadata":{"last_synced_at":"2023-08-09T09:18:36.731Z","issues_count":6,"pull_requests_count":6,"avg_time_to_close_issue":1157706.6666666667,"avg_time_to_close_pull_request":30240.333333333332,"issues_closed_count":3,"pull_requests_closed_count":6,"pull_request_authors_count":3,"issue_authors_count":1,"avg_comments_per_issue":0.3333333333333333,"avg_comments_per_pull_request":0.0,"merged_pull_requests_count":4,"bot_issues_count":0,"bot_pull_requests_count":0,"past_year_issues_count":6,"past_year_pull_requests_count":6,"past_year_avg_time_to_close_issue":1157706.6666666667,"past_year_avg_time_to_close_pull_request":30240.333333333332,"past_year_issues_closed_count":3,"past_year_pull_requests_closed_count":6,"past_year_pull_request_authors_count":3,"past_year_issue_authors_count":1,"past_year_avg_comments_per_issue":0.3333333333333333,"past_year_avg_comments_per_pull_request":0.0,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":0,"past_year_merged_pull_requests_count":4},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/vfrascello%2FXCode-Deploy/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/vfrascello%2FXCode-Deploy/version_numbers","latest_version_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/vfrascello%2FXCode-Deploy/latest_version","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/vfrascello%2FXCode-Deploy/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/vfrascello%2FXCode-Deploy/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/vfrascello%2FXCode-Deploy/codemeta","maintainers":[]}