-
Notifications
You must be signed in to change notification settings - Fork 1
56 lines (47 loc) · 1.38 KB
/
ci.yaml
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
name: ci
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
env:
Cake_Settings_EnableScriptCache: true
Cake_Settings_ShowProcessCommandLine: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
DOTNET_NOLOGO: true
DOTNET_ROLL_FORWARD: Major
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/[email protected]
with:
fetch-depth: 0
filter: tree:0
show-progress: false
- name: Install dotnet
uses: actions/[email protected]
with:
# renovate: datasource=dotnet depName=dotnet-sdk
dotnet-version: 8.0.404
- name: Docker login
if: github.event_name != 'pull_request'
uses: docker/[email protected]
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Setup qemu
uses: docker/[email protected]
with:
platforms: arm64
- name: Setup buildx
uses: docker/[email protected]
- name: Export runtime
uses: crazy-max/[email protected]
- name: Cake build
run: dotnet tool restore && dotnet cake --verbosity=verbose --publish=true