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 4579f4c commit a34ca64Copy full SHA for a34ca64
.github/workflows/fatimage.yml
@@ -92,7 +92,7 @@ jobs:
92
sudo apt -y install libguestfs-tools
93
94
- name: mkdir for mount
95
- run: sudo mkdir -p './${{ steps.manifest.outputs.image-name }}'
+ run: mkdir -p './${{ steps.manifest.outputs.image-name }}'
96
97
- name: mount qcow2 file
98
run: sudo guestmount -a ${{ steps.manifest.outputs.image-name }}.qcow2 -i --ro -o allow_other './${{ steps.manifest.outputs.image-name }}'
@@ -123,3 +123,6 @@ jobs:
123
exit-code: '1'
124
severity: 'CRITICAL'
125
ignore-unfixed: true
126
+
127
+ - name: Unmount image directory
128
+ run: sudo guestunmount './${{ steps.manifest.outputs.image-name }}''
0 commit comments