File tree Expand file tree Collapse file tree 1 file changed +12
-8
lines changed
Expand file tree Collapse file tree 1 file changed +12
-8
lines changed Original file line number Diff line number Diff line change 3838 run : |
3939 if [ -f "Build/OvmfX64/RELEASE_GCC5/FV/OVMF_CODE.fd" ] && [ -f "Build/OvmfX64/RELEASE_GCC5/FV/OVMF_VARS.fd" ]; then
4040 echo "RELEASE build successful. OVMF firmware image files found."
41+ cp Build/OvmfX64/RELEASE_GCC5/FV/OVMF_CODE.fd OVMF_CODE_RELEASE.fd
42+ cp Build/OvmfX64/RELEASE_GCC5/FV/OVMF_VARS.fd OVMF_VARS_RELEASE.fd
4143 else
4244 echo "RELEASE build failed. OVMF firmware image files not found."
4345 exit 1
4749 run : |
4850 if [ -f "Build/OvmfX64/DEBUG_GCC5/FV/OVMF_CODE.fd" ] && [ -f "Build/OvmfX64/DEBUG_GCC5/FV/OVMF_VARS.fd" ]; then
4951 echo "DEBUG build successful. OVMF firmware image files found."
52+ cp Build/OvmfX64/DEBUG_GCC5/FV/OVMF_CODE.fd OVMF_CODE_DEBUG.fd
53+ cp Build/OvmfX64/DEBUG_GCC5/FV/OVMF_VARS.fd OVMF_VARS_DEBUG.fd
5054 else
5155 echo "DEBUG build failed. OVMF firmware image files not found."
5256 exit 1
@@ -57,17 +61,17 @@ jobs:
5761 with :
5862 name : ovmf-artifacts # Name for the artifact
5963 path : |
60- Build/OvmfX64/RELEASE_GCC5/FV/OVMF_CODE .fd
61- Build/OvmfX64/RELEASE_GCC5/FV/OVMF_VARS .fd
62- Build/OvmfX64/DEBUG_GCC5/FV/OVMF_CODE .fd
63- Build/OvmfX64/DEBUG_GCC5/FV/OVMF_VARS .fd
64+ OVMF_CODE_RELEASE .fd
65+ OVMF_VARS_RELEASE .fd
66+ OVMF_CODE_DEBUG .fd
67+ OVMF_VARS_DEBUG .fd
6468
6569 - name : Create GitHub Release
6670 uses : softprops/action-gh-release@v1
6771 if : startsWith(github.event.ref, 'refs/tags/dasharo_qemu')
6872 with :
6973 files : |
70- Build/OvmfX64/RELEASE_GCC5/FV/OVMF_CODE .fd
71- Build/OvmfX64/RELEASE_GCC5/FV/OVMF_VARS .fd
72- Build/OvmfX64/DEBUG_GCC5/FV/OVMF_CODE .fd
73- Build/OvmfX64/DEBUG_GCC5/FV/OVMF_VARS .fd
74+ OVMF_CODE_RELEASE .fd
75+ OVMF_VARS_RELEASE .fd
76+ OVMF_CODE_DEBUG .fd
77+ OVMF_VARS_DEBUG .fd
You can’t perform that action at this time.
0 commit comments