Skip to content
This repository was archived by the owner on Aug 16, 2023. It is now read-only.

Commit 530edbb

Browse files
committed
ci(app): add build script
1 parent b65cf5f commit 530edbb

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: ci
2+
3+
on:
4+
push:
5+
paths-ignore:
6+
- 'doc/**'
7+
- 'img/**'
8+
- 'changelog.md'
9+
- 'readme.md'
10+
pull_request:
11+
12+
jobs:
13+
build:
14+
runs-on: windows-latest
15+
16+
steps:
17+
- name: Checkout
18+
uses: actions/checkout@v2
19+
with:
20+
submodules: true
21+
fetch-depth: 0
22+
23+
- name: Install .NET 6.0
24+
uses: actions/setup-dotnet@v1
25+
with:
26+
dotnet-version: '6.0.x'
27+
28+
- name: Build, Test, Pack, Publish
29+
shell: bash
30+
run: |
31+
dotnet tool install -g dotnet-releaser
32+
dotnet-releaser run --skip-app-packages-for-build-only --github-token "${{secrets.TOKEN_GITHUB}}" src/dotnet-releaser.toml

0 commit comments

Comments
 (0)