-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (35 loc) · 1.01 KB
/
build.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
name: Build API
on:
workflow_call:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v2
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
# - name: Test
# run: dotnet test **/*[Tt]ests/*.csproj --configuration Release --no-build
- name: Publish
run: dotnet publish --configuration Release --no-build --output ./published
- name: Zip
shell: pwsh
run: Compress-Archive -Path ./published/* -DestinationPath ./api.zip
# api
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: api
path: ./api.zip
retention-days: 2
# infra
- name: Upload Infra Artifacts
uses: actions/upload-artifact@v3
with:
name: infra
path: ./infra
retention-days: 2