{"id":20716518,"url":"https://github.com/ferdiozer/github-actions-react","last_synced_at":"2026-05-05T01:32:33.657Z","repository":{"id":133437056,"uuid":"536038272","full_name":"ferdiozer/github-actions-react","owner":"ferdiozer","description":"Automatic Deployment on React App: Github Actions","archived":false,"fork":false,"pushed_at":"2022-09-13T14:43:41.000Z","size":787,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-11T07:26:39.664Z","etag":null,"topics":["autodeploy","devops","github-actions","reactjs"],"latest_commit_sha":null,"homepage":"https://ferdiozer.github.io/github-actions-react/","language":"JavaScript","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/ferdiozer.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}},"created_at":"2022-09-13T08:51:26.000Z","updated_at":"2022-09-13T14:45:11.000Z","dependencies_parsed_at":null,"dependency_job_id":"9b458be2-0bb0-4f12-8d93-0fddb12e1a40","html_url":"https://github.com/ferdiozer/github-actions-react","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ferdiozer/github-actions-react","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ferdiozer%2Fgithub-actions-react","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ferdiozer%2Fgithub-actions-react/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ferdiozer%2Fgithub-actions-react/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ferdiozer%2Fgithub-actions-react/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ferdiozer","download_url":"https://codeload.github.com/ferdiozer/github-actions-react/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ferdiozer%2Fgithub-actions-react/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28015042,"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-12-24T02:00:07.193Z","response_time":83,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","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":["autodeploy","devops","github-actions","reactjs"],"created_at":"2024-11-17T03:05:59.021Z","updated_at":"2025-12-25T01:09:42.243Z","avatar_url":"https://github.com/ferdiozer.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Automatic Deployment on React App: Github Actions\n\nWhen commit or merge to the master branch. Automatically deploy to gh-pages branch.\n\n\n\n[Live](https://ferdiozer.github.io/github-actions-react/)\n\n\n- .github/workflows/deploy.yml \n```\nname: Build \u0026 deploy\n\non:\n  push:\n    branches:\n      - master\n  pull_request:\n    branches:\n      - master\n\njobs:\n  build:\n    name: Build\n    runs-on: ubuntu-latest\n    \n    steps:\n    - name: Checkout code\n      uses: actions/checkout@v2\n    \n    - name: Install Node.js\n      uses: actions/setup-node@v1\n      with:\n        node-version: 13.x\n    \n    - name: Install NPM packages\n      run: npm ci\n    \n    - name: Build project\n      run: npm run build\n    \n    - name: Run tests\n      run: npm run test\n\n    - name: Upload production-ready build files\n      uses: actions/upload-artifact@v2\n      with:\n        name: production-files\n        path: ./build\n  \n  deploy:\n    name: Deploy\n    needs: build\n    runs-on: ubuntu-latest\n    if: github.ref == 'refs/heads/master'\n    \n    steps:\n    - name: Download artifact\n      uses: actions/download-artifact@v2\n      with:\n        name: production-files\n        path: ./build\n\n    - name: Deploy to gh-pages\n      uses: peaceiris/actions-gh-pages@v3\n      with:\n        github_token: ${{ secrets.GITHUB_TOKEN }}\n        publish_dir: ./build\n```\n\nThis project was bootstrapped with reactjs. [React Readme Docs](https://github.com/ferdiozer/github-actions-react/blob/master/README_react.md).\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fferdiozer%2Fgithub-actions-react","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fferdiozer%2Fgithub-actions-react","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fferdiozer%2Fgithub-actions-react/lists"}