Feature CI Docker Compose #33
Workflow file for this run
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: Post Service CI/CD Pipeline | |
on: | |
push: | |
paths: | |
- backend/src/** | |
- .github/workflows/post.yml | |
branches: | |
- master | |
- develop | |
tags: | |
- 'v*' | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '8.x' | |
- name: Restore dependencies | |
run: dotnet restore ./FitnessApp.sln | |
- name: Build project | |
run: dotnet build --configuration Release ./FitnessApp.sln --no-restore | |
- name: Run tests | |
run: | | |
dotnet test ./backend/tests/PostService/PostService.Domain.Tests/PostService.Domain.Tests.csproj --configuration Release --no-build --verbosity normal | |
dotnet test ./backend/tests/PostService/PostService.Application.Tests/PostService.Application.Tests.csproj --configuration Release --no-build --verbosity normal | |
docker: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Log in to Docker Hub | |
run: echo "${{ secrets.DOCKER_HUB_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_HUB_USERNAME }}" --password-stdin | |
- name: Build Docker image | |
run: | | |
IMAGE_VERSION="latest" | |
if [[ "$GITHUB_REF" == refs/tags/* ]]; then | |
IMAGE_VERSION=${GITHUB_REF#refs/tags/} | |
fi | |
docker build \ | |
--build-arg ASPNETCORE_ENVIRONMENT=${{ secrets.ASPNETCORE_ENVIRONMENT }} \ | |
--build-arg DB_CONNECTION_STRING=${{ secrets.DB_CONNECTION_STRING }} \ | |
-t ${{ secrets.DOCKER_HUB_USERNAME }}/post-service:${IMAGE_VERSION} -f ./backend/src/PostService/Dockerfile ./backend/src | |
- name: Push Docker image to Docker Hub | |
if: startsWith(github.ref, 'refs/tags/') | |
run: | | |
IMAGE_VERSION=${GITHUB_REF#refs/tags/} | |
docker push ${{ secrets.DOCKER_HUB_USERNAME }}/post-service:${IMAGE_VERSION} | |
docker-compose: | |
needs: docker | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Build Docker Compose | |
run: docker compose build --no-cache | |
env: | |
ASPNETCORE_ENVIRONMENT: ${{ secrets.ASPNETCORE_ENVIRONMENT }} | |
DB_CONNECTION_STRING: ${{ secrets.DB_CONNECTION_STRING }} |