From a980e688724db8de35a3dd4a561dc9ee83cbfac4 Mon Sep 17 00:00:00 2001 From: EAZYBLACK <68810731+EAZYBLACK@users.noreply.github.com> Date: Sun, 13 Oct 2024 18:16:14 +0300 Subject: [PATCH 1/2] Update for Sequoia release (#457) --- installer-guide/linux-install.md | 5 ++++- installer-guide/mac-install-recovery.md | 5 ++++- installer-guide/windows-install.md | 5 ++++- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/installer-guide/linux-install.md b/installer-guide/linux-install.md index 306799e18..3ef0bae81 100644 --- a/installer-guide/linux-install.md +++ b/installer-guide/linux-install.md @@ -59,8 +59,11 @@ python3 ./macrecovery.py -b Mac-FFE5EF870D7BA81A -m 00000000000000000 download # Ventura (13) python3 ./macrecovery.py -b Mac-4B682C642B45593E -m 00000000000000000 download +# Sonoma (14) +python3 ./macrecovery.py -b Mac-226CB3C6A851A671 -m 00000000000000000 download + # Latest version -# ie. Sonoma (14) +# ie. Sequoia (15) python3 ./macrecovery.py -b Mac-937A206F2EE63C01 -m 00000000000000000 download ``` diff --git a/installer-guide/mac-install-recovery.md b/installer-guide/mac-install-recovery.md index cca4683c0..5fe5348ef 100644 --- a/installer-guide/mac-install-recovery.md +++ b/installer-guide/mac-install-recovery.md @@ -47,8 +47,11 @@ python3 ./macrecovery.py -b Mac-FFE5EF870D7BA81A -m 00000000000000000 download # Ventura (13) python3 ./macrecovery.py -b Mac-4B682C642B45593E -m 00000000000000000 download +# Sonoma (14) +python3 ./macrecovery.py -b Mac-226CB3C6A851A671 -m 00000000000000000 download + # Latest version -# ie. Sonoma (14) +# ie. Sequoia (15) python3 ./macrecovery.py -b Mac-937A206F2EE63C01 -m 00000000000000000 download ``` diff --git a/installer-guide/windows-install.md b/installer-guide/windows-install.md index 2ae5888a3..e056d84cf 100644 --- a/installer-guide/windows-install.md +++ b/installer-guide/windows-install.md @@ -58,8 +58,11 @@ py macrecovery.py -b Mac-FFE5EF870D7BA81A -m 00000000000000000 download # Ventura (13) py macrecovery.py -b Mac-4B682C642B45593E -m 00000000000000000 download +# Sonoma (14) +py macrecovery.py -b Mac-226CB3C6A851A671 -m 00000000000000000 download + # Latest version -# ie. Sonoma (14) +# ie. Sequoia (15) py macrecovery.py -b Mac-937A206F2EE63C01 -m 00000000000000000 download ``` From 87e32d612ae053ea8b00271ad9bf31a5fae3ce0d Mon Sep 17 00:00:00 2001 From: Dhinak G <17605561+dhinakg@users.noreply.github.com> Date: Sun, 13 Oct 2024 11:19:23 -0400 Subject: [PATCH 2/2] Move concurrency to deploy level It was breaking PR builds --- .github/workflows/build_test_deploy.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_test_deploy.yml b/.github/workflows/build_test_deploy.yml index f272e1b75..13884da4d 100644 --- a/.github/workflows/build_test_deploy.yml +++ b/.github/workflows/build_test_deploy.yml @@ -9,10 +9,6 @@ permissions: pages: write id-token: write -concurrency: - group: "pages" - cancel-in-progress: false - jobs: build: name: Build @@ -38,6 +34,9 @@ jobs: path: .vuepress/dist/ deploy: if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} + concurrency: + group: "pages" + cancel-in-progress: false environment: name: github-pages url: ${{ steps.deployment.outputs.page_url }}