-
Notifications
You must be signed in to change notification settings - Fork 4
131 lines (108 loc) · 4.07 KB
/
cashier-api.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
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 }}