{"id":27620882,"url":"https://github.com/remarkablemark/gitploy-action","last_synced_at":"2025-07-22T02:36:30.323Z","repository":{"id":264951331,"uuid":"864638477","full_name":"remarkablemark/gitploy-action","owner":"remarkablemark","description":"🚀 GitHub Action to deploy a directory to a remote Git branch.","archived":false,"fork":false,"pushed_at":"2025-03-15T01:09:56.000Z","size":30,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-19T23:35:22.118Z","etag":null,"topics":["branch","deploy","deployment","git","github-action","github-actions","github-pages","release"],"latest_commit_sha":null,"homepage":"https://github.com/marketplace/actions/gitploy-action","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/remarkablemark.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":["remarkablemark"],"patreon":"remarkablemark","open_collective":null,"ko_fi":"remarkablemark","tidelift":null,"community_bridge":null,"liberapay":"remarkablemark","issuehunt":null,"otechie":null,"buy_me_a_coffee":"remarkablemark","thanks_dev":"u/gh/remarkablemark","custom":["https://b.remarkabl.org/teespring"]}},"created_at":"2024-09-28T18:49:39.000Z","updated_at":"2025-03-15T01:09:25.000Z","dependencies_parsed_at":"2025-04-23T07:42:18.026Z","dependency_job_id":null,"html_url":"https://github.com/remarkablemark/gitploy-action","commit_stats":null,"previous_names":["remarkablemark/gitploy-action"],"tags_count":7,"template":false,"template_full_name":"remarkablemark/github-actions-composite-template","purl":"pkg:github/remarkablemark/gitploy-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remarkablemark%2Fgitploy-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remarkablemark%2Fgitploy-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remarkablemark%2Fgitploy-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remarkablemark%2Fgitploy-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/remarkablemark","download_url":"https://codeload.github.com/remarkablemark/gitploy-action/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remarkablemark%2Fgitploy-action/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266413219,"owners_count":23924686,"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","status":"online","status_checked_at":"2025-07-22T02:00:09.085Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"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":["branch","deploy","deployment","git","github-action","github-actions","github-pages","release"],"created_at":"2025-04-23T07:31:55.800Z","updated_at":"2025-07-22T02:36:30.252Z","avatar_url":"https://github.com/remarkablemark.png","language":null,"readme":"# gitploy-action\n\n[![version](https://badgen.net/github/release/remarkablemark/gitploy-action)](https://github.com/remarkablemark/gitploy-action/releases)\n[![test](https://github.com/remarkablemark/gitploy-action/actions/workflows/test.yml/badge.svg)](https://github.com/remarkablemark/gitploy-action/actions/workflows/test.yml)\n[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)\n\n🚀 GitHub Action to deploy a directory to a remote Git branch. See [demo](https://remarkablemark.org/gitploy-action/).\n\n\u003e [!NOTE]\n\u003e\n\u003e If you see the error:\n\u003e\n\u003e ```\n\u003e remote: Permission to ... denied to ....\n\u003e fatal: unable to access 'https://github.com/...': The requested URL returned error: 403\n\u003e ```\n\u003e\n\u003e Enable **Settings** \u003e **Actions** \u003e **General** \u003e **Workflow permissions** \u003e **Read and write permissions**\n\n## Quick Start\n\n```yaml\n# .github/workflows/deploy.yml\non: push\njobs:\n  deploy:\n    runs-on: ubuntu-latest\n    permissions:\n      contents: write\n    steps:\n      # insert build step\n      # ...\n      - name: Deploy to GitHub Pages\n        uses: remarkablemark/gitploy-action@v1\n        with:\n          directory: build\n```\n\n## Usage\n\nCommit and push `dist` to the remote `gh-pages` branch:\n\n```yaml\n- uses: remarkablemark/gitploy-action@v1\n  with:\n    directory: dist\n    branch: gh-pages\n```\n\nSee [action.yml](https://github.com/remarkablemark/gitploy-action/blob/master/action.yml)\n\n## Inputs\n\n### `directory`\n\n**Required**: The directory of the build files.\n\n```yaml\n- uses: remarkablemark/gitploy-action@v1\n  with:\n    directory: build\n```\n\n### `branch`\n\n**Optional**: The remote Git branch to deploy to. Defaults to `gh-pages`:\n\n```yaml\n- uses: remarkablemark/gitploy-action@v1\n  with:\n    directory: build\n    branch: gh-pages\n```\n\n### `token`\n\n**Optional**: The GitHub token. Defaults to `GITHUB_TOKEN`:\n\n```yaml\n- uses: remarkablemark/gitploy-action@v1\n  with:\n    token: ${{ secrets.GITHUB_TOKEN }}\n```\n\n## License\n\n[MIT](LICENSE)\n","funding_links":["https://github.com/sponsors/remarkablemark","https://patreon.com/remarkablemark","https://ko-fi.com/remarkablemark","https://liberapay.com/remarkablemark","https://buymeacoffee.com/remarkablemark","https://thanks.dev/u/gh/remarkablemark","https://b.remarkabl.org/teespring"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fremarkablemark%2Fgitploy-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fremarkablemark%2Fgitploy-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fremarkablemark%2Fgitploy-action/lists"}