feat: enabled manual triggering for deploy_application workflow #3
Workflow file for this run
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
| # This workflow runs tests, builds, and publishes the images. It performs no deployment. | |
| # It runs on all branches when code is pushed to ensure tests pass and images are available for testing purposes. | |
| name: Build & Test Meet@Mensa | |
| # Run on all branches except main | |
| on: | |
| push: | |
| branches-ignore: | |
| - main | |
| jobs: | |
| # Run tests (unimplemented) | |
| # test: | |
| # name: Run Tests | |
| # uses: ./.github/workflows/test_application.yml | |
| # Call the docker_build workflow to build and publish images | |
| build: | |
| name: Build & Publish Images | |
| uses: ./.github/workflows/docker_build.yml |