Skip to content

Commit

Permalink
Rename yml workflows to yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
Avasam committed Feb 2, 2025
1 parent 7906921 commit 4fc881d
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
paths:
- "**.py"
- "**.ui"
- ".github/workflows/lint-and-build.yml"
- ".github/workflows/lint-and-build.yaml"
- "**/requirements.txt"
pull_request:
branches:
Expand All @@ -23,7 +23,7 @@ on:
- "**.py"
- "**.pyi"
- "**.ui"
- ".github/workflows/lint-and-build.yml"
- ".github/workflows/lint-and-build.yaml"
- "**/requirements*.txt"

env:
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!-- markdownlint-disable-next-line MD033 -->
# <img src="res/icon.ico" alt="LiveSplit" height="42" width="42" align="top"/> AutoSplit [![CodeQL](/../../actions/workflows/codeql-analysis.yml/badge.svg)](/../../actions/workflows/codeql-analysis.yml) [![Lint and build](/../../actions/workflows/lint-and-build.yml/badge.svg)](/../../actions/workflows/lint-and-build.yml)
# <img src="res/icon.ico" alt="LiveSplit" height="42" width="42" align="top"/> AutoSplit [![CodeQL](/../../actions/workflows/codeql-analysis.yaml/badge.svg)](/../../actions/workflows/codeql-analysis.yaml) [![Lint and build](/../../actions/workflows/lint-and-build.yaml/badge.svg)](/../../actions/workflows/lint-and-build.yaml)

[![SemVer](https://badgen.net/badge/_/SemVer%20compliant/grey?label)](https://semver.org/)
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://docs.astral.sh/ruff/linter/)
Expand Down
2 changes: 1 addition & 1 deletion src/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,6 @@ def run_tesseract(png: bytes):
# Environment specifics
WINDOWS_BUILD_NUMBER = int(version().split(".")[-1]) if sys.platform == "win32" else -1
FIRST_WIN_11_BUILD = 22000
"""AutoSplit Version number"""
WGC_MIN_BUILD = 17134
"""https://docs.microsoft.com/en-us/uwp/api/windows.graphics.capture.graphicscapturepicker#applies-to"""
FROZEN = hasattr(sys, "frozen")
Expand All @@ -315,4 +314,5 @@ def run_tesseract(png: bytes):
# Shared strings
# Check `excludeBuildNumber` during workflow dispatch build generate a clean version number
AUTOSPLIT_VERSION = "2.3.0" + (f"-{AUTOSPLIT_BUILD_NUMBER}" if AUTOSPLIT_BUILD_NUMBER else "")
"""AutoSplit Version number"""
GITHUB_REPOSITORY = AUTOSPLIT_GITHUB_REPOSITORY

0 comments on commit 4fc881d

Please sign in to comment.