Allow user to delete a product (#5) #44
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: Cashier API | |
on: | |
push: | |
branches: [ "main" ] | |
paths: | |
- 'src/Cashier/**' | |
- '.github/workflows/cashier-api.yml' | |
- 'Directory.*.props' | |
workflow_dispatch: | |
env: | |
PROJECT_NAME: NCafe.Cashier.Api | |
REGISTRY: ghcr.io | |
IMAGE_NAME: fredimachado/ncafe-cashier-api | |
MINVERTAGPREFIX: cas- | |
defaults: | |
run: | |
working-directory: src/Cashier/NCafe.Cashier.Api | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
global-json-file: "./global.json" | |
- name: Install minver cli | |
run: dotnet tool install --tool-path ./minver minver-cli --version 5.0.0 | |
- name: Calculate version | |
run: | | |
MINVERVERSION=$(./minver/minver -p alpha -t ${{ env.MINVERTAGPREFIX }}) | |
echo "VERSION=$MINVERVERSION" >> "$GITHUB_ENV" | |
echo "MINVERVERSIONOVERRIDE=$MINVERVERSION" >> "$GITHUB_ENV" | |
echo "VERSION: $MINVERVERSION" | |
- name: Install Aspire Workload | |
run: dotnet workload install aspire | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build -c Release --no-restore /p:CopyLocalLockFileAssemblies=true | |
- name: Test | |
run: dotnet test ../../../NCafe.sln --results-directory ./testresults --logger "trx;LogFileName=test_results.xml" /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:CoverletOutput=./testresults/coverage/ | |
- name: Test | |
id: test | |
run: > | |
dotnet test ../../../NCafe.sln | |
--logger console --logger trx --logger html | |
--logger "GitHubActions;summary.includePassedTests=true;summary.includeSkippedTests=true" | |
--results-directory ${{github.workspace}}/TestResults --blame | |
'/p:CollectCoverage=true;CoverletOutputFormat="json,lcov,cobertura";MergeWith=${{github.workspace}}/TestResults/coverage.json;CoverletOutput=${{github.workspace}}/TestResults/coverage' | |
-- RunConfiguration.CollectSourceInformation=true | |
- name: Upload Test Results | |
if: (success() || steps.test.conclusion == 'failure') | |
uses: actions/upload-artifact@v4 | |
with: | |
name: TestResults | |
path: ${{github.workspace}}/TestResults | |
- name: Publish | |
run: dotnet publish -c Release --no-restore --no-build -o ./output | |
- name: Log in to the Container registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | |
tags: | | |
type=semver,pattern={{version}},value=${{ env.VERSION }} | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v5 | |
with: | |
context: src/Cashier/NCafe.Cashier.Api | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
- name: Install Helm | |
uses: azure/[email protected] | |
with: | |
version: v3.11.1 | |
- name: Generate release artifacts | |
run: | | |
chmod +x $GITHUB_WORKSPACE/scripts/generate-artifacts | |
$GITHUB_WORKSPACE/scripts/generate-artifacts -a appspec.yaml -i ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} -t ${{ steps.meta.outputs.version }} -r https://fredimachado.github.io/helm-charts | |
- name: Archive release artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: release-artifacts | |
path: src/Cashier/NCafe.Cashier.Api/deploy/ | |
release-dev: | |
needs: build | |
uses: ./.github/workflows/deploy_template.yml | |
with: | |
environment: cashier-dev | |
namespace: dev | |
project_folder: src/Cashier/NCafe.Cashier.Api | |
secrets: | |
CONNECTIONSTRINGS__EVENTSTORE: ${{ secrets.CONNECTIONSTRINGS__EVENTSTORE }} | |
CONNECTIONSTRINGS__RABBITMQ: ${{ secrets.CONNECTIONSTRINGS__RABBITMQ }} | |
KUBE_CONFIG: ${{ secrets.KUBE_CONFIG }} |