Created
March 15, 2021 22:29
-
-
Save hacktivist123/6903ac249db50d16cf0684309319a791 to your computer and use it in GitHub Desktop.
Circle CI Cloud Foundry Orb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Use the latest 2.1 version of CircleCI pipeline process engine. See: https://circleci.com/docs/2.0/configuration-reference | |
version: 2.1 | |
# Use a package of configuration called an orb. | |
orbs: | |
# Declare a dependency on the cloudfoundry-orb | |
cloudfoundry: circleci/[email protected] | |
# Orchestrate or schedule a set of jobs | |
workflows: | |
cf-deploy: | |
jobs: | |
- cloudfoundry/push: | |
appname: exchange-value | |
endpoint: "$CF_API --skip-ssl-validation" | |
# Set Organization | |
org: $CF_ORG | |
# Set Space | |
space: dev |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment