-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
86420c2
commit e6e3548
Showing
1 changed file
with
10 additions
and
12 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,29 +24,27 @@ jobs: | |
restore-keys: | | ||
${{ runner.os }}-maven- | ||
- name: Build Application JAR | ||
run: mvn clean package | ||
|
||
- name: Login to Docker Hub | ||
uses: docker/[email protected] | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
|
||
|
||
- name: Build Application JAR | ||
working-directory: ./home/runner/work/blog-api-server | ||
run: mvn clean package | ||
|
||
- name: List files | ||
working-directory: ./home/runner/work/blog-api-server | ||
run: ls -R | ||
run: ls -R | ||
|
||
- name: Docker Compose Build | ||
working-directory: ./home/runner/work/blog-api-server | ||
run: docker compose build | ||
- name: Build Docker Image | ||
run: docker build -t ${{ secrets.DOCKER_USERNAME }}/blog-api-server . | ||
|
||
|
||
- name: Push to Docker Hub Container Registry | ||
- name: Tag and Push Docker Image | ||
run: | | ||
docker tag ${{ secrets.DOCKER_USERNAME }}/blog-api-server:latest ${{ secrets.DOCKER_USERNAME }}/blog-api-server:${{ github.run_id }} | ||
docker push ${{ secrets.DOCKER_USERNAME }}/blog-api-server:${{ github.run_id }} | ||
docker push ${{ secrets.DOCKER_USERNAME }}/blog-api-server:latest | ||
- name: Run Docker Compose | ||
run: docker-compose -f docker-compose.yml up -d | ||
|