mirror of
https://github.com/JasonN3/build-container-installer.git
synced 2025-12-25 10:57:55 +01:00
cleanup
This commit is contained in:
parent
3615024864
commit
246deedac2
2 changed files with 3 additions and 9 deletions
6
.github/workflows/build_iso.yml
vendored
6
.github/workflows/build_iso.yml
vendored
|
|
@ -121,12 +121,6 @@ jobs:
|
|||
enrollment_password: ${{ needs.load_vars.outputs.ENROLLMENT_PASSWORD }}
|
||||
iso_name: build/${{ needs.load_vars.outputs.IMAGE_NAME }}-${{ matrix.version }}${{ inputs.suffix && format('-{0}', inputs.suffix || '') }}.iso
|
||||
|
||||
- name: Save output
|
||||
id: save_output
|
||||
shell: bash
|
||||
run: |
|
||||
find
|
||||
|
||||
- name: Upload ISO as artifact
|
||||
id: upload
|
||||
uses: actions/upload-artifact@v4
|
||||
|
|
|
|||
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
add_line=$(grep flatpak_manager.add_remote mnt/install/usr/lib64/python*/site-packages/pyanaconda/modules/payloads/payload/rpm_ostree/flatpak_installation.py)
|
||||
|
||||
add_line_repo=$(echo ${add_line} | grep ${FLATPAK_REMOTE_NAME})
|
||||
add_line_url=$(echo ${add_line} | grep ${_FLATPAK_REPO_URL})
|
||||
add_line_repo=$(echo "${add_line}" | grep ${FLATPAK_REMOTE_NAME})
|
||||
add_line_url=$(echo "${add_line}" | grep ${_FLATPAK_REPO_URL})
|
||||
|
||||
result=0
|
||||
if [ -z "${add_line_repo}" ]
|
||||
|
|
@ -26,7 +26,7 @@ fi
|
|||
|
||||
replace_line=$(grep flatpak_manager.replace_installed_refs_remote mnt/install/usr/lib64/python*/site-packages/pyanaconda/modules/payloads/payload/rpm_ostree/flatpak_installation.py)
|
||||
|
||||
replace_line_repo=$(echo ${replace_line} | grep ${FLATPAK_REMOTE_NAME})
|
||||
replace_line_repo=$(echo "${replace_line}" | grep ${FLATPAK_REMOTE_NAME})
|
||||
|
||||
if [ -z "${replace_line_repo}" ]
|
||||
then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue