Skip to content

Commit 51db6ac

Browse files
committed
added release workflow
1 parent 0b7d16e commit 51db6ac

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

.github/workflows/pipeline.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: Pipeline
22

33
on:
4-
push:
5-
tags:
6-
- 'v[0-9]+.[0-9]+.[0-9]+'
4+
# push:
5+
# tags:
6+
# - 'v[0-9]+.[0-9]+.[0-9]+'
77
pull_request:
88
paths:
99
- 'code/**'

.github/workflows/release.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
on:
2+
push:
3+
tags:
4+
- "v*.*.*"
5+
6+
jobs:
7+
release:
8+
uses: flmorg/universal-workflows-testing/.github/workflows/dotnet.release.test.yml@main
9+
with:
10+
githubContext: ${{ toJSON(github) }}
11+
secrets: inherit

0 commit comments

Comments
 (0)