try different dependency #18
This file contains 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: Docker Build | |
on: | |
push: | |
# branches: | |
# - main | |
# pull_request: | |
workflow_call: | |
inputs: | |
branch: | |
description: "Branch name for build" | |
required: true | |
type: string | |
permissions: | |
id-token: write | |
contents: read | |
#env: | |
# VAULT_PW: ${{ secrets.VAULT_PW }} | |
# REPORT_COVERAGE: true | |
jobs: | |
docker_build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
# path: ./dpc-app | |
# ref: ${{ github.event.pull_request.head.sha || github.event.inputs.branch }} | |
ref: ${{ github.ref_name }} | |
- name: "Set up JDK 11" | |
uses: actions/setup-java@v1 | |
with: | |
java-version: "11" | |
- name: Docker manually | |
run: docker --version && docker compose -f ./docker-compose.base.yml build base | |
- name: Build app | |
run: docker --version && docker compose -f ./docker-compose.base.yml build base | |
# run: cat Makefile | grep ci-app -B 2 -A 3 && make ci-app | |
- name: Build portal # this is run in parallel with the app build on jenkins, might break out to separate job | |
run: make ci-portals-v1 | |
- name: Save artifacts | |
run: "echo 'Saving artifacts'" | |
- name: ECR Login | |
run: "log into ECR here and then push up images" | |
# use ECR to save the artifacts |