We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2897bb commit d979658Copy full SHA for d979658
1 file changed
.github/workflows/install.yml
@@ -74,6 +74,7 @@ jobs:
74
75
- name: Download MFAAvalonia
76
if: matrix.os != 'android'
77
+ id: download_mfa
78
uses: robinraju/release-downloader@v1
79
with:
80
repository: SweetSmellFox/MFAAvalonia
@@ -82,6 +83,14 @@ jobs:
82
83
out-file-path: "MFA"
84
extract: true
85
86
+ - name: Clean up MFAAvalonia archive
87
+ if: matrix.os != 'android'
88
+ shell: bash
89
+ run: |
90
+ ARCHIVE_FILE_PATH="${{ fromJson(steps.download_mfa.outputs.downloaded_files)[0] }}"
91
+ rm -f "${ARCHIVE_FILE_PATH}"
92
+ echo "Archive cleanup command executed for MFAAvalonia."
93
+
94
- name: Install
95
shell: bash
96
run: |
0 commit comments