Skip to content

Commit c5c80d1

Browse files
committed
test release workflow
1 parent 18484b5 commit c5c80d1

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/release.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Release
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
- name: Setup dotnet ${{ matrix.dotnet-version }}
11+
uses: actions/setup-dotnet@v4
12+
with:
13+
dotnet-version: '8.0.x'
14+
- name: Display dotnet version
15+
run: dotnet --version

0 commit comments

Comments
 (0)