Skip to content

Commit 4ed18c0

Browse files
committed
Including colors.tx in the release builds.
1 parent 2536b75 commit 4ed18c0

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/release-linux.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,9 @@ jobs:
8989
mkdir termin8or_examples-${{ github.ref_name }}
9090
cp glibc2.38/examples termin8or_examples-${{ github.ref_name }}/examples-glibc2.38
9191
cp glibc2.35/examples termin8or_examples-${{ github.ref_name }}/examples-glibc2.35
92-
# Copy background.tx
92+
# Copy background.tx and colors.tx
9393
cp -r glibc2.38/background.tx termin8or_examples-${{ github.ref_name }}/
94+
cp -r glibc2.38/colors.tx termin8or_examples-${{ github.ref_name }}/
9495
echo "This package contains two binaries:" > termin8or_examples-${{ github.ref_name }}/README.txt
9596
echo "- examples-glibc2.38: for modern systems (Ubuntu 24.04+, Arch Linux)" >> termin8or_examples-${{ github.ref_name }}/README.txt
9697
echo "- examples-glibc2.35: for legacy systems (WSL, Ubuntu 22.04)" >> termin8or_examples-${{ github.ref_name }}/README.txt

.github/workflows/release-macos.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,9 @@ jobs:
5858
# Copy the executable and necessary files
5959
chmod ugo+x examples
6060
cp examples termin8or_examples-${{ github.ref_name }}/
61-
# Copy background.tx
61+
# Copy background.tx and colors.tx
6262
cp -r background.tx termin8or_examples-${{ github.ref_name }}/
63+
cp -r colors.tx termin8or_examples-${{ github.ref_name }}/
6364
echo "Unblock instructions:" > termin8or_examples-${{ github.ref_name }}/README.txt
6465
echo "=====================" >> termin8or_examples-${{ github.ref_name }}/README.txt
6566
echo "To tell the gatekeeper that this executable is fine" >> termin8or_examples-${{ github.ref_name }}/README.txt

.github/workflows/release-windows.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ jobs:
3939
New-Item -ItemType Directory -Force -Path "upload-temp"
4040
Copy-Item "Examples/examples.vs/x64/Release/examples.vs.exe" "upload-temp/"
4141
Copy-Item "Examples/background.tx" "upload-temp/"
42+
Copy-Item "Examples/colors.tx" "upload-temp/"
4243
4344
# Step 4: Upload build artifact
4445
- name: Upload Windows build artifact
@@ -75,8 +76,9 @@ jobs:
7576
New-Item -ItemType Directory -Force -Path "termin8or_examples-${{ github.ref_name }}"
7677
# Copy the executable and necessary files
7778
Copy-Item "examples.vs.exe" "termin8or_examples-${{ github.ref_name }}/"
78-
# Copy background.tx
79+
# Copy background.tx and colors.tx
7980
Copy-Item "background.tx" "termin8or_examples-${{ github.ref_name }}/"
81+
Copy-Item "colors.tx" "termin8or_examples-${{ github.ref_name }}/"
8082
echo "Unblock instructions:" > termin8or_examples-${{ github.ref_name }}/README.txt
8183
echo "=====================" >> termin8or_examples-${{ github.ref_name }}/README.txt
8284
echo "To tell Windows that this executable is fine" >> termin8or_examples-${{ github.ref_name }}/README.txt

0 commit comments

Comments
 (0)