This file contains hidden or 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
| # Optional - The name of the workflow, appears in the "Actions" tab of the GitHub repository. If this field is omitted, the name of the workflow file will be used instead. | |
| name: deploy-app-to-production | |
| # Optional - The name for workflow runs generated from the workflow. | |
| # This example uses an expression with the `github` context to display the username." | |
| # See full list of available context objects: https://docs.github.com/en/actions/learn-github-actions/contexts | |
| run-name: ${{ github.actor }} is deploying to cpanel | |
| # The trigger for this workflow | |
| # you can target multiple branches by adding one branch per line |
OlderNewer