Skip to content

Commit 7e21978

Browse files
committed
fix(build): simplify package creation steps and update source format to native
1 parent 73536a8 commit 7e21978

File tree

2 files changed

+2
-21
lines changed

2 files changed

+2
-21
lines changed

.github/workflows/build-deb.yml

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -791,12 +791,7 @@ jobs:
791791
# Go back to parent directory
792792
cd ..
793793
794-
# Create the orig.tar.gz from our minimal source (required for PPA)
795-
echo "Creating orig.tar.gz from minimal source..."
796-
tar -czf "openlist_${CLEAN_VERSION}.orig.tar.gz" "openlist-${CLEAN_VERSION}"
797-
798-
echo "Created minimal source package:"
799-
ls -la openlist_${CLEAN_VERSION}.orig.tar.gz
794+
echo "Prepared minimal source package structure"
800795
801796
- name: Set up GPG
802797
env:
@@ -870,20 +865,6 @@ jobs:
870865
if [ -d "openlist-${CLEAN_VERSION}/debian/binaries" ]; then
871866
echo "✅ Binaries found in source package:"
872867
ls -la openlist-${CLEAN_VERSION}/debian/binaries/
873-
# Create debian/source/include-binaries to list pre-downloaded binaries
874-
mkdir -p "openlist-${CLEAN_VERSION}/debian/source" && \
875-
find "openlist-${CLEAN_VERSION}/debian/binaries/" -type f -printf 'debian/binaries/%P\n' > "openlist-${CLEAN_VERSION}/debian/source/include-binaries" || \
876-
echo "Warning: Failed to create include-binaries file"
877-
878-
# Debug: Verify include-binaries file was created and show its content
879-
if [ -f "openlist-${CLEAN_VERSION}/debian/source/include-binaries" ]; then
880-
echo "✅ include-binaries file created successfully:"
881-
echo "Content of include-binaries file:"
882-
cat "openlist-${CLEAN_VERSION}/debian/source/include-binaries"
883-
else
884-
echo "❌ include-binaries file was not created!"
885-
exit 1
886-
fi
887868
else
888869
echo "❌ No binaries found in source package - this should not happen"
889870
echo "Contents of source directory:"

debian/source/format

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0 (quilt)
1+
3.0 (native)

0 commit comments

Comments
 (0)