There was an error while loading. Please reload this page.
1 parent 86e2f8a commit 110e6adCopy full SHA for 110e6ad
1 file changed
.github/workflows/release.yml
@@ -4,17 +4,22 @@ run-name: Release ${{ github.ref_name }} by @${{ github.actor }}
4
on:
5
push:
6
tags:
7
- - '*'
+ - '*.*.*'
8
- '!*alpha*'
9
- '!*beta*'
10
- - '!*rc*'
+ - '!*+*'
11
12
permissions:
13
contents: write
14
actions: write
15
16
jobs:
17
release:
18
+ if: >
19
+ startsWith(github.ref, 'refs/tags/') &&
20
+ !contains(github.ref_name, 'alpha') &&
21
+ !contains(github.ref_name, 'beta') &&
22
+ !contains(github.ref_name, '+')
23
uses: ianhubnet/.github/.github/workflows/project.yml@main
24
with:
25
name: ${{ vars.CSK_NAME }}
0 commit comments