Skip to content

Commit e3ed6e3

Browse files
authored
Modify CI workflow to include instructions download
Updated CI workflow to download instructions.txt after removing unsplit ISO.
1 parent 93c3bdb commit e3ed6e3

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/CI.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,16 +59,18 @@ jobs:
5959
path: ${{ github.workspace }}/output/${{ matrix.target.image }}-25.10-${{ env.kver }}-t2-questing.iso
6060
archive: false
6161

62-
- name: Remove unsplit ISO
62+
- name: Remove unsplit ISO and get instructions.txt
6363
run: |
6464
sudo rm ${{ github.workspace }}/output/*.iso
65+
cd ${{ github.workspace }}
66+
wget https://raw.githubusercontent.com/t2linux/T2-Ubuntu/refs/heads/LTS/.github/workflows/instructions.txt
6567
- name: Release
6668
if: github.ref == 'refs/heads/mainline'
6769
uses: softprops/action-gh-release@v2
6870
with:
6971
files: ${{ github.workspace }}/output/*
7072
tag_name: v${{ env.isotag }}
71-
#body_path: ${{ github.workspace }}/.github/workflows/instructions.txt
73+
body_path: ${{ github.workspace }}/instructions.txt
7274
draft: false
7375
prerelease: false
7476
env:

0 commit comments

Comments
 (0)