secubox-deb/.github/workflows/publish-packages.yml
CyberMind-FR b372463fba fix(ci): Add workflow_call trigger to enable reusable workflows
- build-packages.yml: Add workflow_call with secrets
- build-image.yml: Add workflow_call with inputs, fix matrix for all event types
- publish-packages.yml: Add workflow_call with inputs and secrets

This fixes the release.yml workflow which was failing because it tried
to call these workflows as reusable workflows without the workflow_call
trigger defined.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-04-04 10:54:52 +02:00

159 lines
5.0 KiB
YAML

# SecuBox — Publish packages to apt.secubox.in
# This workflow is triggered after build-packages.yml completes on a tag
name: Publish Packages
on:
workflow_call:
inputs:
distribution:
description: 'Target distribution'
required: false
type: string
default: 'bookworm'
secrets:
GPG_PRIVATE_KEY:
required: true
DEPLOY_SSH_KEY:
required: true
DEPLOY_KNOWN_HOSTS:
required: true
workflow_run:
workflows: ["Build SecuBox .deb packages"]
types: [completed]
branches: [main, master]
workflow_dispatch:
inputs:
distribution:
description: 'Target distribution'
required: true
default: 'bookworm'
type: choice
options:
- bookworm
- trixie
run_id:
description: 'Build workflow run ID to publish (leave empty for latest)'
required: false
env:
REPO_HOST: apt.secubox.in
REPO_USER: deploy
REPO_PATH: /var/www/apt.secubox.in
jobs:
publish:
runs-on: ubuntu-latest
# Only run if triggered workflow succeeded and was a tag
if: |
(github.event.workflow_run.conclusion == 'success' &&
startsWith(github.event.workflow_run.head_branch, 'v')) ||
github.event_name == 'workflow_dispatch'
environment: production
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download artifacts from build workflow
uses: dawidd6/action-download-artifact@v3
with:
workflow: build-packages.yml
run_id: ${{ github.event.inputs.run_id || github.event.workflow_run.id }}
name: secubox-debs-all
path: debs/
- name: List downloaded packages
run: |
echo "Downloaded packages:"
ls -lh debs/*.deb 2>/dev/null | head -40 || echo "No .deb files found"
echo "Total: $(ls -1 debs/*.deb 2>/dev/null | wc -l) packages"
- name: Install reprepro
run: sudo apt-get update && sudo apt-get install -y reprepro gnupg
- name: Import GPG key
env:
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
run: |
echo "$GPG_PRIVATE_KEY" | gpg --batch --import
gpg --list-keys
- name: Setup repository structure
run: |
mkdir -p repo/conf
cp repo/conf/distributions repo/conf/
cat > repo/conf/options << EOF
verbose
basedir $(pwd)/repo
EOF
- name: Add packages to repository
env:
DIST: ${{ github.event.inputs.distribution || 'bookworm' }}
run: |
echo "Adding packages to $DIST..."
for deb in debs/*.deb; do
[ -f "$deb" ] || continue
echo " Adding: $(basename $deb)"
reprepro -b repo includedeb "$DIST" "$deb" || echo " Warning: Failed to add $(basename $deb)"
done
- name: Export public GPG key
run: |
gpg --armor --export packages@secubox.in > repo/secubox-keyring.gpg
gpg --export packages@secubox.in > repo/secubox-keyring.gpg.bin
cp repo/secubox-keyring.gpg repo/dists/
- name: Generate install script
run: |
cat > repo/install.sh << 'INSTALL'
#!/bin/bash
# SecuBox APT Repository Installation Script
set -e
echo "Installing SecuBox APT repository..."
# Download and install GPG key
curl -fsSL https://apt.secubox.in/secubox-keyring.gpg | \
sudo tee /usr/share/keyrings/secubox.gpg > /dev/null
# Add repository
echo "deb [signed-by=/usr/share/keyrings/secubox.gpg] https://apt.secubox.in bookworm main" | \
sudo tee /etc/apt/sources.list.d/secubox.list
# Update package lists
sudo apt-get update
echo ""
echo "SecuBox repository installed successfully!"
echo ""
echo "Install packages with:"
echo " sudo apt install secubox-full # All modules"
echo " sudo apt install secubox-lite # Essential modules only"
echo ""
INSTALL
chmod +x repo/install.sh
- name: Deploy to server
env:
SSH_PRIVATE_KEY: ${{ secrets.DEPLOY_SSH_KEY }}
KNOWN_HOSTS: ${{ secrets.DEPLOY_KNOWN_HOSTS }}
run: |
mkdir -p ~/.ssh
echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_ed25519
chmod 600 ~/.ssh/id_ed25519
echo "$KNOWN_HOSTS" > ~/.ssh/known_hosts
echo "Deploying to ${REPO_HOST}..."
rsync -avz --delete \
repo/dists/ repo/pool/ repo/secubox-keyring.gpg repo/secubox-keyring.gpg.bin repo/install.sh \
${REPO_USER}@${REPO_HOST}:${REPO_PATH}/
- name: Verify deployment
run: |
echo "Verifying deployment..."
curl -sf "https://${REPO_HOST}/dists/bookworm/Release" | head -10
echo ""
echo "Repository published successfully!"
echo "Install with: curl -fsSL https://${REPO_HOST}/install.sh | sudo bash"