Compare commits

..

No commits in common. "main" and "v14" have entirely different histories.
main ... v14

View file

@ -2,137 +2,205 @@ name: Build and Release
on: on:
push: push:
branches: [main] branches: [ main ]
pull_request: pull_request:
branches: [main] branches: [ main ]
jobs: jobs:
build: build:
name: Build multi-arch Raspberry Pi binaries name: Cross-compile for Raspberry Pi
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v4 uses: actions/checkout@v3
- name: Set up Go - name: Set up Go
uses: actions/setup-go@v5 uses: actions/setup-go@v4
with: with:
go-version: "1.22" go-version: '1.20'
- name: Build for ARMv6 (Pi Zero / Pi 1) - name: Build for ARM (Pi Zero, Pi 1 - ARMv6)
run: | run: |
GOOS=linux GOARCH=arm GOARM=6 \ GOOS=linux GOARCH=arm GOARM=6 go build -ldflags="-s -w" -o wol-server-arm6
go build -ldflags="-s -w" -o wol-server-armv6
- name: Build for ARM64 (Pi Zero 2 / Pi 3 / Pi 4 / Pi 5) - name: Create systemd service file
run: | run: |
GOOS=linux GOARCH=arm64 \ cat > wol-server.service << 'EOL'
go build -ldflags="-s -w" -o wol-server-arm64 [Unit]
Description=WOL Server Go Application
After=network.target
- name: Create systemd service file [Service]
run: | User=pi
cat > wol-server.service << 'EOF' WorkingDirectory=/home/pi/wol-server
[Unit] ExecStart=/home/pi/wol-server/wol-server
Description=WOL Server Go Application Restart=always
After=network.target
[Service] [Install]
Type=simple WantedBy=multi-user.target
User=loke EOL
WorkingDirectory=/home/loke/wol-server
ExecStart=/home/loke/wol-server/wol-server
Restart=always
RestartSec=3
[Install] - name: Create deployment script
WantedBy=multi-user.target run: |
EOF cat > install.sh << 'EOL'
#!/bin/bash
set -e
- name: Create install script # Installation directory
run: | INSTALL_DIR=~/wol-server
cat > install.sh << 'EOF'
#!/bin/bash
set -e
INSTALL_DIR="$HOME/wol-server" echo "Creating installation directory..."
mkdir -p $INSTALL_DIR
mkdir -p $INSTALL_DIR/templates
echo "Creating installation directory..." echo "Installing application..."
mkdir -p "$INSTALL_DIR/templates" cp wol-server-arm6 $INSTALL_DIR/wol-server
chmod +x $INSTALL_DIR/wol-server
ARCH=$(uname -m) echo "Installing template files..."
case "$ARCH" in cp -r templates/* $INSTALL_DIR/templates/
armv6l|armv7l)
BIN="wol-server-armv6"
;;
aarch64)
BIN="wol-server-arm64"
;;
*)
echo "Unsupported architecture: $ARCH"
exit 1
;;
esac
echo "Detected architecture: $ARCH" echo "Installing system service..."
echo "Using binary: $BIN" sudo cp wol-server.service /etc/systemd/system/
sudo systemctl daemon-reload
sudo systemctl enable wol-server
cp "$BIN" "$INSTALL_DIR/wol-server" # Install required dependencies
chmod +x "$INSTALL_DIR/wol-server" echo "Installing dependencies..."
sudo apt-get update -qq
sudo apt-get install -y wakeonlan sshpass
echo "Installing templates..." # Start the service
cp -r templates/* "$INSTALL_DIR/templates/" echo "Starting service..."
sudo systemctl restart wol-server
echo "Installing systemd service..." echo "==========================================="
sudo cp wol-server.service /etc/systemd/system/ echo "Installation complete!"
sudo systemctl daemon-reload echo "The WOL server is now running at http://$(hostname -I | awk '{print $1}'):8080"
sudo systemctl enable wol-server echo "==========================================="
EOL
echo "Installing dependencies..." chmod +x install.sh
sudo apt-get update -qq
sudo apt-get install -y wakeonlan sshpass
echo "Starting service..." - name: Create README with installation instructions
sudo systemctl restart wol-server run: |
cat > INSTALL.md << 'EOL'
# WOL Server Installation Guide
echo "===========================================" This guide will help you install the Wake-on-LAN server on your Raspberry Pi.
echo "WOL Server installed successfully!"
echo "URL: http://$(hostname -I | awk '{print $1}'):8080"
echo "==========================================="
EOF
chmod +x install.sh ## Prerequisites
- name: Create release package - Raspberry Pi running Raspberry Pi OS (Raspbian)
run: | - SSH access to your Pi
mkdir -p package - SCP or SFTP capability to transfer files
cp wol-server-armv6 package/
cp wol-server-arm64 package/
cp wol-server.service package/
cp install.sh package/
cp -r templates package/
tar -czf wol-server.tar.gz -C package . ## Installation Steps
- name: Create Forgejo Release ### 1. Transfer Files to Raspberry Pi
if: github.ref == 'refs/heads/main'
run: |
TAG="v${{ github.run_number }}"
API_URL="${{ github.server_url }}/api/v1"
REPO="${{ github.repository }}"
# Create release **Option 1: Using SCP from your computer**
RELEASE_ID=$(curl -s -X POST \
-H "Authorization: token ${{ secrets.GITEA_TOKEN }}" \
-H "Content-Type: application/json" \
"${API_URL}/repos/${REPO}/releases" \
-d "{\"tag_name\": \"${TAG}\", \"name\": \"Release ${TAG}\", \"draft\": false, \"prerelease\": false}" \
| grep -o '"id":[0-9]*' | head -1 | cut -d: -f2)
# Upload asset ```bash
curl -s -X POST \ # Replace with your Pi's IP address
-H "Authorization: token ${{ secrets.GITEA_TOKEN }}" \ PI_IP=192.168.1.100
"${API_URL}/repos/${REPO}/releases/${RELEASE_ID}/assets?name=wol-server.tar.gz" \
-F "attachment=@wol-server.tar.gz" > /dev/null
echo "Release ${TAG} created with asset wol-server.tar.gz" # Transfer the installation package
scp wol-server.tar.gz pi@$PI_IP:~/
```
**Option 2: Using SFTP client**
Use a tool like FileZilla, WinSCP, or Cyberduck to transfer the `wol-server.tar.gz` file to your Raspberry Pi.
### 2. SSH into your Raspberry Pi
```bash
ssh pi@192.168.1.100
```
### 3. Extract and Install
```bash
# Navigate to home directory
cd ~
# Extract the archive
tar -xzf wol-server.tar.gz
# Run the installation script
./install.sh
```
### 4. Test the Installation
Open a web browser and navigate to:
```
http://[your-pi-ip]:8080
```
## Troubleshooting
If the service fails to start, check the logs:
```bash
sudo systemctl status wol-server
```
If template errors occur, ensure the template files were copied correctly:
```bash
ls -la ~/wol-server/templates/
```
## Manual Installation (if needed)
If you encounter issues with the automated install:
```bash
# Create directories
mkdir -p ~/wol-server/templates
# Copy files manually
cp wol-server-arm6 ~/wol-server/wol-server
chmod +x ~/wol-server/wol-server
cp templates/* ~/wol-server/templates/
sudo cp wol-server.service /etc/systemd/system/
# Install dependencies
sudo apt-get update
sudo apt-get install -y wakeonlan sshpass
# Enable and start service
sudo systemctl daemon-reload
sudo systemctl enable wol-server
sudo systemctl start wol-server
```
EOL
- name: Create all-in-one package
run: |
# Create a single package with everything needed
mkdir -p package
cp wol-server-arm6 package/
cp wol-server.service package/
cp install.sh package/
cp -r templates package/
cp INSTALL.md package/
# Create the tarball
tar -czf wol-server.tar.gz -C package .
- name: Create Release
id: create_release
uses: softprops/action-gh-release@v1
if: github.ref == 'refs/heads/main'
with:
tag_name: v${{ github.run_number }}
name: Release v${{ github.run_number }}
draft: false
prerelease: false
files: |
wol-server.tar.gz
INSTALL.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}