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 2955039 commit dda77f3Copy full SHA for dda77f3
.github/workflows/patch.yml
@@ -9,7 +9,7 @@ on:
9
10
concurrency:
11
cancel-in-progress: true
12
- group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
+ group: ${{ github.workflow }}
13
14
jobs:
15
build:
metal_libraries/ipsw/fetch.py
@@ -59,6 +59,10 @@ def _fetch_apple_db_items(self) -> dict:
59
except packaging.version.InvalidVersion:
60
continue
61
62
+ # Skip 15.1 temporarily
63
+ if item["version"].split(" ")[0] == "15.1":
64
+ continue
65
+
66
name = "macOS"
67
if "appledbWebImage" in item:
68
if "id" in item["appledbWebImage"]:
0 commit comments