{"id":25758223,"url":"https://github.com/revopush/revopush-github-action","last_synced_at":"2026-04-16T02:31:18.772Z","repository":{"id":278975755,"uuid":"936109361","full_name":"revopush/revopush-github-action","owner":"revopush","description":"Revopush GitHub Action makes it easy to release OTA updates","archived":false,"fork":false,"pushed_at":"2025-02-22T23:11:46.000Z","size":624,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-22T23:23:45.697Z","etag":null,"topics":["code-push","ota-update","react-native"],"latest_commit_sha":null,"homepage":"https://revopush.org/","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/revopush.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":"2025-02-20T14:44:49.000Z","updated_at":"2025-02-22T23:10:47.000Z","dependencies_parsed_at":"2025-02-22T23:34:00.439Z","dependency_job_id":null,"html_url":"https://github.com/revopush/revopush-github-action","commit_stats":null,"previous_names":["revopush/revopush-github-action"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/revopush%2Frevopush-github-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/revopush%2Frevopush-github-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/revopush%2Frevopush-github-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/revopush%2Frevopush-github-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/revopush","download_url":"https://codeload.github.com/revopush/revopush-github-action/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240892238,"owners_count":19874342,"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":["code-push","ota-update","react-native"],"created_at":"2025-02-26T16:37:47.497Z","updated_at":"2026-04-16T02:31:13.726Z","avatar_url":"https://github.com/revopush.png","language":"JavaScript","readme":"# `revopush-github-action` GitHub Action\n\nConfigures the Revopush Command Line Interface in the GitHub Actions environment.\n\n## Prerequisites\n\n-   This action runs using Node 20. If you are using self-hosted GitHub Actions\n    runners, you must use a [runner version](https://github.com/actions/virtual-environments) that supports this\n    version or newer.\n\n## Usage\n\nGitHub action supports all the commands available in the Revopush CLI of appropriate version.\nPlease keep in mind that some commands (such as `release-react`) need to be executed and make sense only after you have\nloaded all the dependencies of your project and build React Native app.\n\n```yaml\njobs:\n  job_id:\n    # Any runner supporting Node 20 or newer\n    runs-on: ubuntu-latest\n    steps:\n      - name: Setup Revopush CLI\n        uses: 'revopush/revopush-github-action@v1'\n        id: setup-revopush-cli\n        with:\n          version: 'latest'\n          accessKey: ${{ secrets.REVOPUSH_ACCESS_KEY }}\n      - name: Release Android bundle\n        run: revopush release-react myAmazingAndroidApp android -d Staging\n      - name: Release ios bundle\n        run: revopush release-react myAmazingIOSApp ios -d Staging\n```\n\n## Inputs\n\n-   `version`(Optional, default: `latest`).\n    A string representing the version or version constraint of the Revopush CLI\n    (`revopush`) to install (e.g. `\"0.0.3\"` or `\"\u003e= 0.0.2\"`). The default\n    value is `\"latest\"`, which will always download and install the latest\n    available CLI version.\n\n        - uses: 'revopush/revopush-github-action@v1'\n          with:\n            version: '\u003e= 0.0.3'\n\n    If there is no installed `revopush` version that matches the given\n    constraint, this GitHub Action will download and install the latest\n    available version that still matches the constraint.\n\n    You are responsible for ensuring the `revopush` version matches the features required.\n\n-   `accessKey`(Optional). Revopush access key created in the [app](http://app.revopush.org/). Considered to be a secret.\n\n         - uses: 'revopush/revopush-github-action@v1'\n           with:\n             accessKey: ${{ secrets.REVOPUSH_ACCESS_KEY }}\n\n    You are responsible for ensuring the accessKey was not neither expired nor deleted.\n    \n    If no accessKey given you must authenticate CLI before executing any commands require authentication\n\n        - name: Authenticate Revopush CLI\n          run: revopush login --accessKey ${{ secrets.REVOPUSH_ACCESS_KEY }}\n\n## Outputs\n-   `version`: Version of Revopush CLI that was installed.\n\n## Caching\n\nUnder the hood action uses [@actions/tool-cache](https://www.npmjs.com/package/@actions/tool-cache) npm package to \ncache installed tooling (`/opt/hostedtoolcache/revopush`) to speed up further workflow executions. \nIt works out the box for self-hosted runners where for GitHub-hosted runners the following config is needed to persist \nchanges made by action:\n\n```yaml\n      - name: Tools cache\n        id: tool-caches\n        uses: actions/cache@v4\n        with:\n          path: /opt/hostedtoolcache/revopush\n          key: revopush-${{ runner.os }}-${{ github.run_id }}\n          restore-keys: |\n            revopush-${{ runner.os }}-\n```\n\n## Versioning\n\nWe recommend pinning to the latest available major version:\n\n```yaml\n- uses: 'revopush/revopush-github-action@v1'\n```\n\nWhile this action attempts to follow semantic versioning, human errors can occur.\nTo avoid accidental breaking changes, you can pin to a specific version:\n\n```yaml\n- uses: 'revopush/revopush-github-action@v1.0.0'\n```\n\nHowever, you will not get automatic security updates or new features without\nexplicitly updating your version number.\n\n## Questions, Issues and Support\n\nIf you have any questions or issues with this action, please [open an issue](https://github.com/revopush/revopush-github-action/issues) \non this repository or send email to [support@revopush.org](mailto:support@revopush.org).\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frevopush%2Frevopush-github-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frevopush%2Frevopush-github-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frevopush%2Frevopush-github-action/lists"}