Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 805 Bytes

README.md

File metadata and controls

35 lines (26 loc) · 805 Bytes

GitHub Actions for Ember CLI

This Action for ember-cli enables arbitrary actions with the ember-cli command-line client, including deploying ember applications with ember-cl-deploy.

Usage

An example workflow to build, test, and publish an ember application follows:

workflow "Build, Test, and Publish" {
  on = "push"
  resolves = ["Deploy"]
}

action "Build" {
  uses = "NuckChorris/ember-cli-actions@master"
  args = "install"
}

action "Test" {
  needs = "Build"
  uses = "NuckChorris/ember-cli-actions@master"
  args = "test"
}

action "Publish" {
  needs = "Test"
  uses = "NuckChorris/ember-cli-actions@master"
  args = "deploy --access public"
}

License

This project is released under the MIT License.