This repository has been archived by the owner on Jul 8, 2024. It is now read-only.
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: Reporting Microservice CI/CD | ||
on: | ||
push: | ||
branches: [reporting] | ||
pull_request: | ||
branches: [dev, main] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Setup dotnet | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: "8.0.x" | ||
- name: Install dependencies | ||
run: | | ||
cd ./services/reporting | ||
dotnet restore | ||
- name: Build | ||
run: | | ||
cd ./services/reporting | ||
dotnet build | ||
sonarcloud: | ||
name: SonarCloud | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | ||
- name: SonarCloud Scan | ||
uses: SonarSource/sonarcloud-github-action@master | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any | ||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | ||
publish: | ||
runs-on: ubuntu-latest | ||
needs: [build, test] | ||
Check failure on line 42 in .github/workflows/reporting.yml GitHub Actions / Reporting Microservice CI/CDInvalid workflow file
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@master | ||
- name: Login to Docker Hub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- name: Build and push | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: ./services/ | ||
file: ./services/reporting/Dockerfile | ||
push: true | ||
tags: floriaaan/goodfood-reporting:latest | ||
deploy: | ||
runs-on: ubuntu-latest | ||
needs: [build, test, publish] | ||
steps: | ||
- name: Install Kubectl | ||
uses: azure/setup-kubectl@v3 | ||
- name: Setup Cluster Authentication | ||
run: cat ${{ secrets.KUBECONFIG }} > /tmp/kubeconfig | ||
- name: Deploying reporting | ||
run: kubectl --kubeconfig=/tmp/kubeconfig rollout restart deployment reporting-service |