Deploy (update-bitnami-images -> staging) by @aprilrieger with SHA 0a5b0d045a5d5f3cc441c1d1f4e102278560d279 #335
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
| name: "Deploy" | |
| run-name: Deploy (${{ github.ref_name }} -> ${{ inputs.environment }}) by @${{ github.actor }} with SHA ${{ github.sha}} | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| environment: | |
| description: 'Deploy to Environment' | |
| required: true | |
| default: 'staging' | |
| type: choice | |
| options: | |
| - staging | |
| - demo | |
| - production | |
| debug_enabled: | |
| type: boolean | |
| description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)' | |
| required: false | |
| default: false | |
| jobs: | |
| call-workflow: | |
| uses: notch8/actions/.github/workflows/[email protected] | |
| with: | |
| deploy-solr-image: false | |
| k8s-release-name: hyku-${{ inputs.environment }} | |
| k8s-namespace: ${{ inputs.environment }} | |
| secrets: inherit |