Skip to content

BOF-47 Add build.yml #9

BOF-47 Add build.yml

BOF-47 Add build.yml #9

Workflow file for this run

name: Docker Build
on:
pull_request:
branches:
- develop
types:
- opened
- reopened
- synchronize
- ready_for_review
jobs:
docker_build:
name: Docker Build
runs-on: ubuntu-latest
if: ${{ !github.event.pull_request.draft }}
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Set environment variables
run: echo "${{secrets.WEBSITE_ENV }}" > ./src/main/resources/application.properties
- name: Build Docker image
run: docker build .