Skip to content
thumbs-up

GitHub Action

This action uploads an application file to DeployGate

v0.2.2 Latest version

This action uploads an application file to DeployGate

thumbs-up

This action uploads an application file to DeployGate

An action to upload an application file to DeployGate

Installation

Copy and paste the following snippet into your .yml file.

              

- name: This action uploads an application file to DeployGate

uses: jmatsu/dg-upload-app-action@v0.2.2

Learn more about this action in jmatsu/dg-upload-app-action

Choose a version

typescript-action status

Upload an app to DeployGate

This action uploads an application file to DeployGate. (Not official action of DeployGate.)

NOTE: v0.2 does not have a backward compatibility with v0.1.

Versions

See Releases page.

Inputs and Outpus

See action.yml of your version.

Example

Please make sure your workflow will run when a branch is pushed.

on:
  push or pull_request

Add this action to steps.

uses: jmatsu/dg-upload-app-action@<version>
  with:
    app_owner_name: <your DeployGate account/organization name>
    api_token: ${{ secrets.DEPLOYGATE_API_TOKEN }} # for example
    app_file_path: /path/to/app_file

NOTE: versioning documentation

License

MIT License

Release

Actions are run from GitHub repos so we will checkin the packed dist folder.

Then run ncc and push the results:

# Edit VERSION to the latest version e.g. v0.2.1
$ git switch [-c] releases/v0.2
$ yarn release
$ git add dist
$ git commit -m "updates the production distribution"
$ git tag <version>
$ git push origin releases/v0.2

NOTE: versioning documentation