Skip to content

Commit 0470538

Browse files
author
Natsuu
authored
fix(ci): 将删除MFA自带MaaFw的步骤后置 (#30)
## 由 Sourcery 提供的总结 CI: - 在安装工作流程中,将移除 MFA 内置运行时的步骤移动到下载并解压 MFAAvalonia 之后再执行。 <details> <summary>Original summary in English</summary> ## Summary by Sourcery CI: - Move the MFA built-in runtime removal step to after the MFAAvalonia download and extraction step in the install workflow. </details>
1 parent 1ef8850 commit 0470538

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/install.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,6 @@ jobs:
8383
out-file-path: "deps"
8484
extract: true
8585

86-
- name: Remove built-in runtime in MFA
87-
if: matrix.os != 'android'
88-
shell: bash
89-
run: |
90-
rm -rf MFA/runtimes
91-
9286
- name: Download MFAAvalonia
9387
if: matrix.os != 'android'
9488
id: download_mfa
@@ -108,6 +102,12 @@ jobs:
108102
rm -f "${ARCHIVE_FILE_PATH}"
109103
echo "Archive cleanup command executed for MFAAvalonia."
110104
105+
- name: Remove built-in runtime in MFA
106+
if: matrix.os != 'android'
107+
shell: bash
108+
run: |
109+
rm -rf MFA/runtimes
110+
111111
- name: Install
112112
shell: bash
113113
run: |

0 commit comments

Comments
 (0)