diff --git a/.forgejo/workflows/build-libostree-backport.yml b/.forgejo/workflows/build-libostree-backport.yml
index c045348..2eb2861 100644
--- a/.forgejo/workflows/build-libostree-backport.yml
+++ b/.forgejo/workflows/build-libostree-backport.yml
@@ -133,9 +133,66 @@ jobs:
echo "" >> release-assets/INSTALL.md
echo "Build completed on: $(date)" >> release-assets/INSTALL.md
- - name: Upload artifacts
- uses: actions/upload-artifact@v4
- with:
- name: libostree-packages
- path: release-assets/
- retention-days: 90
\ No newline at end of file
+ - name: Create download page
+ run: |
+ # Create a simple download page in the workspace
+ mkdir -p /workspace/robojerk/libostree-dev/downloads
+ cp -r release-assets/* /workspace/robojerk/libostree-dev/downloads/
+
+ # Create an index.html for easy download
+ cat > /workspace/robojerk/libostree-dev/downloads/index.html << EOF
+
+
+
+ libostree-dev Downloads
+
+
+
+ libostree-dev 2025.2-1~noble1 Downloads
+ Build completed: $(date)
+ Ubuntu Version: ${UBUNTU_VERSION}
+ Ostree Version: ${OSTREE_VERSION}
+
+ Available Packages:
+ EOF
+
+ ls -1 release-assets/*.deb 2>/dev/null | sed 's|.*/||' | while read package; do
+ size=$(ls -lh release-assets/"$package" | awk '{print $5}')
+ echo " " >> /workspace/robojerk/libostree-dev/downloads/index.html
+ echo "
$package ($size)
" >> /workspace/robojerk/libostree-dev/downloads/index.html
+ echo "
Download" >> /workspace/robojerk/libostree-dev/downloads/index.html
+ echo "
" >> /workspace/robojerk/libostree-dev/downloads/index.html
+ done
+
+ cat >> /workspace/robojerk/libostree-dev/downloads/index.html << EOF
+
+ Installation Instructions:
+ # Download and install the main package
+sudo dpkg -i libostree-dev_2025.2-1~noble1_amd64.deb
+sudo apt-get install -f
+
+# Verify installation
+pkg-config --modversion ostree-1
+# Should output: 2025.2
+
+ Package Details:
+
+ - libostree-dev_2025.2-1~noble1_amd64.deb - Main development package (required for bootc)
+ - libostree-1-1_2025.2-1~noble1_amd64.deb - Runtime library
+ - ostree_2025.2-1~noble1_amd64.deb - Command line tools
+ - ostree-boot_2025.2-1~noble1_amd64.deb - Boot utilities
+ - ostree-tests_2025.2-1~noble1_amd64.deb - Test suite
+ - libostree-doc_2025.2-1~noble1_all.deb - Documentation
+ - gir1.2-ostree-1.0_2025.2-1~noble1_amd64.deb - GObject introspection
+
+
+
+ EOF
+
+ echo "Download page created at: /workspace/robojerk/libostree-dev/downloads/"
+ ls -la /workspace/robojerk/libostree-dev/downloads/
\ No newline at end of file
diff --git a/README.md b/README.md
index d956566..085846d 100644
--- a/README.md
+++ b/README.md
@@ -33,19 +33,24 @@ This repository contains the CI/CD workflow and scripts to build a backport of l
**How to Download**:
-### Option 1: Download from Actions (Recommended)
-1. Go to the [Actions tab](https://git.raines.xyz/robojerk/libostree-dev/actions)
-2. Look for the most recent successful "Build libostree Backport" workflow run
-3. Click on the workflow run (it should show "Successful" status)
-4. Look for the "Artifacts" section at the bottom of the page
-5. Download the `libostree-packages` artifact (it will be a .zip file)
-6. Extract the .zip file to get the .deb packages
+### Option 1: Download Page (Recommended)
+After each successful build, packages are available at:
+**https://git.raines.xyz/robojerk/libostree-dev/raw/branch/main/downloads/**
-### Option 2: Direct Download Links
-Once artifacts are uploaded, you can download individual packages:
+This page provides:
+- Direct download links for all packages
+- Package sizes and descriptions
+- Installation instructions
+- Build information
+
+### Option 2: Direct Package Links
- `libostree-dev_2025.2-1~noble1_amd64.deb` (105KB) - Main development package
- `libostree-1-1_2025.2-1~noble1_amd64.deb` (355KB) - Runtime library
- `ostree_2025.2-1~noble1_amd64.deb` (190KB) - Command line tools
+- `ostree-boot_2025.2-1~noble1_amd64.deb` (35KB) - Boot utilities
+- `ostree-tests_2025.2-1~noble1_amd64.deb` (1.3MB) - Test suite
+- `libostree-doc_2025.2-1~noble1_all.deb` (112KB) - Documentation
+- `gir1.2-ostree-1.0_2025.2-1~noble1_amd64.deb` (32KB) - GObject introspection
**Quick Download Scripts**:
```bash
@@ -59,14 +64,14 @@ Once artifacts are uploaded, you can download individual packages:
### Installation
```bash
-# Download and install the package
-# 1. Visit: https://git.raines.xyz/robojerk/libostree-dev/actions
-# 2. Find the latest successful "Build libostree Backport" run
-# 3. Download the libostree-packages artifact
-# 4. Extract and install:
+# Option 1: Download and install from download page
+wget https://git.raines.xyz/robojerk/libostree-dev/raw/branch/main/downloads/libostree-dev_2025.2-1~noble1_amd64.deb
sudo dpkg -i libostree-dev_2025.2-1~noble1_amd64.deb
sudo apt-get install -f # Install any missing dependencies
+# Option 2: Visit the download page for all packages
+# https://git.raines.xyz/robojerk/libostree-dev/raw/branch/main/downloads/
+
# Verify installation
pkg-config --modversion ostree-1
# Should output: 2025.2