项目作者: citizen-of-planet-earth

项目描述 :
Deploy to Cloud Foundry and manage your apps and services using the CF CLI easily with this GitHub Action
高级语言: Dockerfile
项目地址: git://github.com/citizen-of-planet-earth/cf-cli-action.git
创建时间: 2019-11-18T10:10:10Z
项目社区:https://github.com/citizen-of-planet-earth/cf-cli-action

开源协议:BSD 2-Clause "Simplified" License

下载


CF CLI Action

Deploy to Cloud Foundry and manage your apps and services using the CF CLI easily with this GitHub Action.

Example Workflow

  1. name: Deploy to Cloud Foundry
  2. on:
  3. push:
  4. branches:
  5. - master
  6. jobs:
  7. build:
  8. runs-on: ubuntu-18.04
  9. # Build your app here
  10. deploy:
  11. runs-on: ubuntu-18.04
  12. needs: build
  13. steps:
  14. - uses: citizen-of-planet-earth/cf-cli-action@master
  15. with:
  16. cf_api: https://api.my-cloud-foundry.com
  17. cf_username: ${{ secrets.CF_USER }}
  18. cf_password: ${{ secrets.CF_PASSWORD }}
  19. cf_org: AwesomeApp
  20. cf_space: Development
  21. command: push -f manifest-dev.yml