This GitHub Action automates the deployment of SAP CAP projects to Cloud Foundry (cf).
| Parameter | Required | Description |
|---|---|---|
CF_API_DEV |
Yes | The API endpoint for the development Cloud Foundry environment. |
CF_ORG_DEV |
Yes | The organization for the development environment in Cloud Foundry. |
CF_SPACE_DEV |
Yes | The space within the development organization in Cloud Foundry. |
CF_USERNAME_DEV |
Yes | The username for logging into the development environment in Cloud Foundry. |
CF_PASSWORD_DEV |
Yes | The password for logging into the development environment in Cloud Foundry. |
CF_API_PROD |
Yes | The API endpoint for the production Cloud Foundry environment. |
CF_ORG_PROD |
Yes | The organization for the production environment in Cloud Foundry. |
CF_SPACE_PROD |
Yes | The space within the production organization in Cloud Foundry. |
CF_USERNAME_PROD |
Yes | The username for logging into the production environment in Cloud Foundry. |
CF_PASSWORD_PROD |
Yes | The password for logging into the production environment in Cloud Foundry. |
CF_API_QA |
Optional | The API endpoint for the QA Cloud Foundry environment, if applicable. |
CF_ORG_QA |
Optional | The organization for the QA environment in Cloud Foundry, if applicable. |
CF_SPACE_QA |
Optional | The space within the QA organization in Cloud Foundry, if applicable. |
CF_USERNAME_QA |
Optional | The username for logging into the QA environment in Cloud Foundry, if applicable. |
CF_PASSWORD_QA |
Optional | The password for logging into the QA environment in Cloud Foundry, if applicable. |
CF_IAS_ORIGIN |
Optional | The origin to be used for IAS authentication when logging into Cloud Foundry. |
To use this GitHub Action, add the following job to your workflow:
name: Release
on:
pull_request:
branches:
- main # Change branch if main is not the main branch
types:
- closed
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Bump version and create release
uses: dxfrontier/gh-action-deploy-cf@main
with:
# Development
CF_API_DEV: ${{ secrets.CF_API_DEV }}
CF_ORG_DEV: ${{ secrets.CF_ORG_DEV }}
CF_SPACE_DEV: ${{ secrets.CF_SPACE_DEV }}
CF_USERNAME_DEV: ${{ secrets.CF_USERNAME_DEV }}
CF_PASSWORD_DEV: ${{ secrets.CF_PASSWORD_DEV }}
# Production
CF_API_PROD: ${{ secrets.CF_API_PROD }}
CF_ORG_PROD: ${{ secrets.CF_ORG_PROD }}
CF_SPACE_PROD: ${{ secrets.CF_SPACE_PROD }}
CF_USERNAME_PROD: ${{ secrets.CF_USERNAME_PROD }}
CF_PASSWORD_PROD: ${{ secrets.CF_PASSWORD_PROD }}
# QA is optional, added if necessary ...
# CF_IAS_ORIGIN is optional, add if necessary ...Important
All Cloud Foundry credentials secrets must be securely stored in your repository.
Avoid hardcoding sensitive data in workflows to maintain security and compliance.
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
Copyright (c) 2025 DXFrontier
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.