Merge pull request #8458 from ecamp/renovate/lock-file-maintenance #4500
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: CI + CD for devel | |
| on: | |
| push: | |
| branches: | |
| - devel | |
| workflow_dispatch: | |
| inputs: | |
| action: | |
| description: "Choose action" | |
| type: choice | |
| required: true | |
| default: diff | |
| options: | |
| - diff | |
| - deploy | |
| jobs: | |
| continuous-integration: | |
| name: "Continuous integration" | |
| uses: ./.github/workflows/continuous-integration.yml | |
| build-and-push: | |
| name: Build and push docker images | |
| needs: continuous-integration | |
| uses: ./.github/workflows/reusable-build-and-push.yml | |
| with: | |
| tag: latest | |
| secrets: | |
| DOCKER_HUB_USERNAME: ${{ vars.DOCKER_HUB_USERNAME }} | |
| DOCKER_HUB_PASSWORD: ${{ secrets.DOCKER_HUB_PASSWORD }} | |
| SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} | |
| upgrade-or-install-deployment: | |
| name: Upgrade or install deployment | |
| needs: build-and-push | |
| uses: ./.github/workflows/reusable-ecamp3-deployment.yml | |
| with: | |
| name: dev | |
| env: dev | |
| action: ${{ github.event.inputs.action || 'deploy' }} | |
| secrets: inherit |