We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0afbd46 commit adb70a2Copy full SHA for adb70a2
.github/workflows/ci.yml
@@ -2,7 +2,9 @@ name: CI
2
on:
3
push:
4
branches: [master, release-*]
5
- tags: ["*.*.*"]
+ tags:
6
+ - '[0-9]+.[0-9]+.[0-9]+'
7
+ - '[0-9]+.[0-9]+.[0-9]+-*'
8
pull_request:
9
workflow_dispatch:
10
jobs:
@@ -69,7 +71,7 @@ jobs:
69
71
run: dotnet tool install --global minver-cli
70
72
- name: Run MinVer
73
id: minver
- run: echo "::set-output name=version::$(minver)"
74
+ run: echo '::set-output name=version::$(minver)'
75
- name: Download artifacts
76
uses: actions/download-artifact@v2.0.10
77
with:
0 commit comments