Skip to content

GitHub Action for interacting with Codepush using appcenter-cli 2.1.0

License

Notifications You must be signed in to change notification settings

unifacef/codepush-action-legacy

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CodePush Action for GitHub (Legacy)

This Action for appcenter codepush enables arbitrary actions with the appcenter command-line client.
[email protected]

Inputs

  • args - Required. This is the arguments you want to use for the appcenter cli

Environment variables

  • APPCENTER_ACCESS_TOKEN - Required. The token to use for authentication. This token can be aquired through the appcenter dashboard.

Example

To authenticate with Codepush, and deploy to Codepush:

name: Build and Deploy
on:
  push:
    branches:
      - master

jobs:
  deploy:
    name: Deploy
    runs-on: ubuntu-latest
    steps:
      - name: Checkout Repo
        uses: actions/checkout@master
      - name: Install Dependencies
        run: npm install
      - name: Deploy to Codepush
        uses: unifacef/codepush-action-legacy@master
        with:
          args: release-react -d Production
        env:
          APPCENTER_ACCESS_TOKEN: ${{ secrets.APPCENTER_ACCESS_TOKEN }}

License

The Dockerfile and associated scripts and documentation in this project are released under the MIT License.

Credits

Thanks to Jeremy Shore for the firebase-action repo.
Forked from NishanthShankar/codepush-action.

About

GitHub Action for interacting with Codepush using appcenter-cli 2.1.0

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 62.7%
  • Dockerfile 37.3%