mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00
Set to to checks.yml not run check rules on tagged releases
This commit is contained in:
parent
bbff62bf32
commit
a4e7a76ab7
1 changed files with 2 additions and 1 deletions
3
.github/workflows/checks.yml
vendored
3
.github/workflows/checks.yml
vendored
|
@ -23,7 +23,6 @@ jobs:
|
||||||
matrix = json.loads(r"""
|
matrix = json.loads(r"""
|
||||||
{
|
{
|
||||||
"BUILD_TYPE": [
|
"BUILD_TYPE": [
|
||||||
"check",
|
|
||||||
"build"
|
"build"
|
||||||
],
|
],
|
||||||
"os": [
|
"os": [
|
||||||
|
@ -74,6 +73,8 @@ jobs:
|
||||||
|
|
||||||
if args.tagged:
|
if args.tagged:
|
||||||
matrix["python"].append("3.8")
|
matrix["python"].append("3.8")
|
||||||
|
else:
|
||||||
|
matrix["BUILD_TYPE"].append("check")
|
||||||
|
|
||||||
print(json.dumps(matrix))
|
print(json.dumps(matrix))
|
||||||
' > buildmatrix.py;
|
' > buildmatrix.py;
|
||||||
|
|
Loading…
Reference in a new issue