We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1ca54e commit 553374cCopy full SHA for 553374c
1 file changed
.github/workflows/release.yml
@@ -5,22 +5,17 @@ on:
5
push:
6
tags:
7
- "v[0-9]+.[0-9]+.[0-9]+"
8
- branches:
9
- - "main"
10
- - "release/*"
11
- - "feature/*"
12
- - "v15/*"
13
jobs:
14
build:
15
runs-on: ubuntu-latest
16
timeout-minutes: 15
17
steps:
18
- name: Checkout
19
uses: actions/checkout@v2
20
- - name: Verify commit exists in origin/main
+ - name: Verify commit exists in origin/v15
21
run: |
22
git fetch --no-tags --prune --depth=1 origin +refs/heads/*:refs/remotes/origin/*
23
- git branch --remote --contains | grep origin/main
+ git branch --remote --contains | grep origin/v15
24
- name: Setup .NET
25
uses: actions/setup-dotnet@v3
26
with:
0 commit comments