-
Notifications
You must be signed in to change notification settings - Fork 4
126 lines (104 loc) · 3.61 KB
/
admin-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
name: Admin API
on:
push:
branches: [ "main" ]
paths:
- 'src/Admin/**'
- '.github/workflows/admin-api.yml'
- 'Directory.*.props'
workflow_dispatch:
env:
PROJECT_NAME: NCafe.Admin.Api
REGISTRY: ghcr.io
IMAGE_NAME: fredimachado/ncafe-admin-api
MINVERTAGPREFIX: adm-
defaults:
run:
working-directory: src/Admin/NCafe.Admin.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: Restore dependencies
run: dotnet restore
- name: Test
id: test
run: |
echo "## Test results" >> $GITHUB_STEP_SUMMARY
dotnet test ../**.Tests/**.csproj \
--results-directory ${{github.workspace}}/TestResults --blame \
--logger console --logger trx --logger html \
--logger "GitHubActions;summary.includePassedTests=true;summary.includeSkippedTests=true" \
-- 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: Build
run: dotnet build -c Release --no-restore /p:CopyLocalLockFileAssemblies=true
- 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/Admin/NCafe.Admin.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/Admin/NCafe.Admin.Api/deploy/
release-dev:
needs: build
uses: ./.github/workflows/deploy_template.yml
with:
environment: admin-dev
namespace: dev
project_folder: src/Admin/NCafe.Admin.Api
secrets:
CONNECTIONSTRINGS__EVENTSTORE: ${{ secrets.CONNECTIONSTRINGS__EVENTSTORE }}
CONNECTIONSTRINGS__RABBITMQ: ${{ secrets.CONNECTIONSTRINGS__RABBITMQ }}
KUBE_CONFIG: ${{ secrets.KUBE_CONFIG }}