Skip to content

Commit

Permalink
Update devel.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
oklopfer authored May 12, 2024
1 parent 88635c3 commit 8a5e930
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/devel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,17 +46,20 @@ jobs:
patch -i 0002-remove-WRONGSUITE-error.patch
mv functions /usr/share/debootstrap/functions
cp binary_grub-efi /usr/lib/live/build/binary_grub-efi
if [[ "${{ matrix.type }}" == "tarball" ]]; then
cp binary_rootfs /usr/lib/live/build/binary_rootfs
fi
- name: set to tarball
if: matrix.type == 'tarball'
run: cp binary_rootfs /usr/lib/live/build/binary_rootfs

- name: Make scripts executable
run: chmod -R +x build.sh etc/auto/config etc/terraform.conf etc/

- name: Build system image
run: |
./build.sh etc/terraform.conf
echo "OUT_ISO=$(cd builds/${{ matrix.target }}; ls *.iso)" >> $GITHUB_ENV
run: ./build.sh etc/terraform.conf

- name: export iso filename
if: matrix.type == 'iso'
run: echo "OUT_ISO=$(cd builds/${{ matrix.target }}; ls *.iso)" >> $GITHUB_ENV

- uses: actions/[email protected]
if: matrix.type == 'iso'
Expand Down

0 comments on commit 8a5e930

Please sign in to comment.