Skip to content

Merge pull request #23 from project-lyrics/feature/SCRUM-121 #7

Merge pull request #23 from project-lyrics/feature/SCRUM-121

Merge pull request #23 from project-lyrics/feature/SCRUM-121 #7

Workflow file for this run

name: Build Image & Push
on:
push:
branches:
[ "dev" ]
permissions:
contents: read
jobs:
CI-CD:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: set up JDK 21
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '21'
- name: cache gradle
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: overwrite application.yml
if: |
contains(github.ref, 'dev')
run: |
echo "${{ secrets.YML }}" > src/main/resources/application.yml
shell: bash
- name: build with gradle
run: |
./gradlew build -x test
- name: login into docker
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: build docker image & push to docker hub
if: contains(github.ref, 'dev')
run: |
pwd
docker build -f Dockerfile --platform linux/amd64 -t ${{ secrets.DOCKERHUB_USERNAME }}/feelin-api:latest .
docker push ${{ secrets.DOCKERHUB_USERNAME }}/feelin-api:latest