Compare commits
18 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| eb525879f1 | |||
| b1c7f10fec | |||
| da09fb2e65 | |||
| fefaf49298 | |||
| fc05ac0725 | |||
| 5bcac141d1 | |||
| c7ad30d2df | |||
| 93f6aaea76 | |||
| 7a448ffa3a | |||
| 89443f9481 | |||
| c5d3651a96 | |||
| 548e3949ad | |||
| 4b8d5008d6 | |||
| 25e0cfd15e | |||
| 9c771f098c | |||
| dfc8d9ed57 | |||
| 565d7f1a35 | |||
| 45c7788d1d |
@@ -0,0 +1,15 @@
|
||||
name: Beta Release
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- 'v*-beta*'
|
||||
- 'v*-test*'
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
if: "contains(github.ref_name, 'beta') || contains(github.ref_name, 'test')"
|
||||
uses: ./.gitea/workflows/deploy_call.yaml
|
||||
with:
|
||||
prerelease: true
|
||||
secrets: inherit
|
||||
@@ -0,0 +1,136 @@
|
||||
name: Deploy
|
||||
|
||||
on:
|
||||
workflow_call:
|
||||
inputs:
|
||||
prerelease:
|
||||
description: 'Mark as prerelease'
|
||||
required: false
|
||||
type: boolean
|
||||
default: false
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
jobs:
|
||||
build-and-release:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Clone repository with submodules
|
||||
run: |
|
||||
git config --global --remove-section http || true
|
||||
git config --global --unset-all core.askPass || true
|
||||
TOKEN="${{ secrets.BUILD_TOKEN }}"
|
||||
git clone --recurse-submodules \
|
||||
-c credential.helper="" \
|
||||
https://token:$TOKEN@git.datadunia.com/devops/wireguard-vpn.git .
|
||||
|
||||
- name: Setup Go
|
||||
uses: actions/setup-go@v5
|
||||
with:
|
||||
go-version: '1.22'
|
||||
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: '20'
|
||||
|
||||
- name: Build Vue frontend
|
||||
run: |
|
||||
cd app/frontend
|
||||
npm install
|
||||
npm run build
|
||||
|
||||
- name: Build Go binaries
|
||||
run: |
|
||||
cd app
|
||||
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o ../wgrplane-linux-amd64 .
|
||||
CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -o ../wgrplane-linux-arm64 .
|
||||
|
||||
- name: Generate latest.json
|
||||
run: |
|
||||
VERSION="${{ gitea.ref_name }}"
|
||||
RELEASE_DATE="$(date -u +'%Y-%m-%dT%H:%M:%SZ')"
|
||||
REPO="${{ gitea.repository }}"
|
||||
SERVER="${{ gitea.server_url }}"
|
||||
cat > latest.json << ENDJSON
|
||||
{
|
||||
"version": "$VERSION",
|
||||
"release_date": "$RELEASE_DATE",
|
||||
"download_urls": {
|
||||
"amd64": "${SERVER}/${REPO}/releases/download/${VERSION}/wgrplane-linux-amd64",
|
||||
"arm64": "${SERVER}/${REPO}/releases/download/${VERSION}/wgrplane-linux-arm64"
|
||||
}
|
||||
}
|
||||
ENDJSON
|
||||
|
||||
- name: Create Release and upload assets
|
||||
env:
|
||||
TOKEN: ${{ secrets.BUILD_TOKEN }}
|
||||
run: |
|
||||
if [ -z "$TOKEN" ]; then
|
||||
echo "Value: [EMPTY]"
|
||||
exit 1
|
||||
else
|
||||
echo "Length: ${#TOKEN} characters"
|
||||
fi
|
||||
|
||||
REPO="${{ gitea.repository }}"
|
||||
TAG="${{ gitea.ref_name }}"
|
||||
API="${{ gitea.server_url }}/api/v1"
|
||||
|
||||
# 0. Check & Delete Existing Release
|
||||
echo "=== 0. Check & Delete Existing Release ==="
|
||||
EXISTING_RESP=$(curl -s -H "Authorization: token $TOKEN" "$API/repos/$REPO/releases/tags/$TAG")
|
||||
EXISTING_ID=$(echo "$EXISTING_RESP" | grep -o '"id":[0-9]*' | head -n 1 | cut -d':' -f2 || true)
|
||||
|
||||
if [ -n "$EXISTING_ID" ] && [ "$EXISTING_ID" != "null" ]; then
|
||||
echo "⚠️ Found existing release for tag $TAG with ID: $EXISTING_ID. Deleting..."
|
||||
DELETE_RESP=$(curl -s -w "\n%{http_code}" -X DELETE -H "Authorization: token $TOKEN" "$API/repos/$REPO/releases/$EXISTING_ID")
|
||||
echo "✅ Delete response: $DELETE_RESP"
|
||||
else
|
||||
echo "No existing release found for $TAG. Proceeding..."
|
||||
fi
|
||||
|
||||
# 1. Create Release
|
||||
echo "=== 1. Create New Release ==="
|
||||
JSON_BODY=$(printf '{"tag_name":"%s","name":"%s","body":"Release %s","draft":false,"prerelease":%s}' "$TAG" "$TAG" "$TAG" "${{ inputs.prerelease }}")
|
||||
|
||||
RELEASE_RESP=$(curl -s -X POST \
|
||||
-H "Authorization: token $TOKEN" \
|
||||
-H "Content-Type: application/json" \
|
||||
-d "$JSON_BODY" \
|
||||
"$API/repos/$REPO/releases")
|
||||
|
||||
# Ambil ID dengan lebih teliti
|
||||
# Tambahkan || true agar grep tidak membuat script crash (karena set -e) jika id tidak ditemukan
|
||||
RELEASE_ID=$(echo "$RELEASE_RESP" | grep -o '"id":[0-9]*' | head -n 1 | cut -d':' -f2 || true)
|
||||
|
||||
if [ -z "$RELEASE_ID" ] || [ "$RELEASE_ID" = "null" ]; then
|
||||
echo "Gagal membuat release. Response: $RELEASE_RESP"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "Release ID: $RELEASE_ID"
|
||||
|
||||
# 2. Upload Assets
|
||||
for FILE in wgrplane-linux-amd64 wgrplane-linux-arm64 latest.json; do
|
||||
if [ -f "$FILE" ]; then
|
||||
echo "Uploading $FILE..."
|
||||
curl -s -X POST \
|
||||
-H "Authorization: token $TOKEN" \
|
||||
-F "attachment=@$FILE" \
|
||||
"$API/repos/$REPO/releases/$RELEASE_ID/assets?name=$FILE"
|
||||
else
|
||||
echo "Skip $FILE (tidak ditemukan)"
|
||||
fi
|
||||
done
|
||||
|
||||
- name: Cleanup build artifacts
|
||||
if: always()
|
||||
run: |
|
||||
git config --global --remove-section http || true
|
||||
git config --global --unset-all core.askPass || true
|
||||
rm -f wgrplane-linux-amd64 wgrplane-linux-arm64 latest.json
|
||||
rm -rf app/frontend/node_modules app/frontend/dist
|
||||
echo "Cleanup done"
|
||||
@@ -3,127 +3,12 @@ name: Release
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- 'v*'
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
- 'v[0-9]*.[0-9]*.[0-9]'
|
||||
|
||||
jobs:
|
||||
build-and-release:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Clone repository with submodules
|
||||
run: |
|
||||
git config --global --remove-section http || true
|
||||
git config --global --unset-all core.askPass || true
|
||||
TOKEN="${{ secrets.TOKEN_BUILD }}"
|
||||
git clone --recurse-submodules \
|
||||
-c credential.helper="" \
|
||||
https://token:$TOKEN@git.datadunia.com/devops/wireguard-vpn.git .
|
||||
|
||||
- name: Setup Go
|
||||
uses: actions/setup-go@v5
|
||||
with:
|
||||
go-version: '1.22'
|
||||
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: '20'
|
||||
|
||||
- name: Build Vue frontend
|
||||
run: |
|
||||
cd app/frontend
|
||||
npm install
|
||||
npm run build
|
||||
|
||||
- name: Build Go binaries
|
||||
run: |
|
||||
cd app
|
||||
GOOS=linux GOARCH=amd64 go build -o ../wgrplane-linux-amd64 .
|
||||
GOOS=linux GOARCH=arm64 go build -o ../wgrplane-linux-arm64 .
|
||||
|
||||
- name: Generate latest.json
|
||||
run: |
|
||||
VERSION="${{ gitea.ref_name }}"
|
||||
RELEASE_DATE="$(date -u +'%Y-%m-%dT%H:%M:%SZ')"
|
||||
REPO="${{ gitea.repository }}"
|
||||
SERVER="${{ gitea.server_url }}"
|
||||
cat > latest.json << ENDJSON
|
||||
{
|
||||
"version": "$VERSION",
|
||||
"release_date": "$RELEASE_DATE",
|
||||
"download_urls": {
|
||||
"amd64": "${SERVER}/${REPO}/releases/download/${VERSION}/wgrplane-linux-amd64",
|
||||
"arm64": "${SERVER}/${REPO}/releases/download/${VERSION}/wgrplane-linux-arm64"
|
||||
}
|
||||
}
|
||||
ENDJSON
|
||||
|
||||
- name: Create Release and upload assets
|
||||
env:
|
||||
TOKEN: ${{ secrets.TOKEN_BUILD }} # <--- Tambahkan ini
|
||||
run: |
|
||||
if [ -z "$TOKEN" ]; then
|
||||
echo "❌ ERROR: Secret TOKEN_BUILD tidak terbaca oleh runner!"
|
||||
exit 1
|
||||
else
|
||||
echo "✅ Secret terbaca (panjang karakter: ${#TOKEN})"
|
||||
fi
|
||||
# # Gunakan variabel bawaan Gitea Actions untuk keandalan
|
||||
# REPO="${{ gitea.repository }}"
|
||||
# TAG="${{ gitea.ref_name }}"
|
||||
# API="${{ gitea.server_url }}/api/v1"
|
||||
|
||||
# echo "Menciptakan release untuk tag: $TAG"
|
||||
|
||||
# # 1. Create Release
|
||||
# # Menggunakan -w "%{http_code}" untuk debugging jika gagal
|
||||
# JSON_BODY=$(printf '{"tag_name":"%s","name":"%s","body":"Release %s","draft":false,"prerelease":false}' "$TAG" "$TAG" "$TAG")
|
||||
|
||||
# RELEASE_RESP=$(curl -s -X POST \
|
||||
# -H "Authorization: token $TOKEN" \
|
||||
# -H "Content-Type: application/json" \
|
||||
# -d "$JSON_BODY" \
|
||||
# "$API/repos/$REPO/releases")
|
||||
|
||||
# # Cara lebih aman ambil ID (menghapus "id": dan tanda koma)
|
||||
# RELEASE_ID=$(echo "$RELEASE_RESP" | grep -o '"id":[0-9]*' | cut -d':' -f2)
|
||||
|
||||
# if [ -z "$RELEASE_ID" ] || [ "$RELEASE_ID" = "null" ]; then
|
||||
# echo "Gagal membuat release. Response: $RELEASE_RESP"
|
||||
# exit 1
|
||||
# fi
|
||||
|
||||
# echo "Release berhasil dibuat dengan ID: $RELEASE_ID"
|
||||
|
||||
# # 2. Upload 3 File menggunakan loop
|
||||
# # Sesuai Swagger: POST /repos/{owner}/{repo}/releases/{id}/assets
|
||||
# for FILE in wgrplane-linux-amd64 wgrplane-linux-arm64 latest.json; do
|
||||
# if [ -f "$FILE" ]; then
|
||||
# echo "Sedang mengupload: $FILE..."
|
||||
# UPLOAD_STATUS=$(curl -s -o /dev/null -w "%{http_code}" -X POST \
|
||||
# -H "Authorization: token $TOKEN" \
|
||||
# -F "attachment=@$FILE" \
|
||||
# "$API/repos/$REPO/releases/$RELEASE_ID/assets?name=$FILE")
|
||||
|
||||
# if [ "$UPLOAD_STATUS" == "201" ]; then
|
||||
# echo "Berhasil upload $FILE"
|
||||
# else
|
||||
# echo "Gagal upload $FILE (HTTP Status: $UPLOAD_STATUS)"
|
||||
# exit 1
|
||||
# fi
|
||||
# else
|
||||
# echo "Error: File $FILE tidak ditemukan di direktori!"
|
||||
# exit 1
|
||||
# fi
|
||||
# done
|
||||
|
||||
- name: Cleanup build artifacts
|
||||
if: always()
|
||||
run: |
|
||||
git config --global --remove-section http || true
|
||||
git config --global --unset-all core.askPass || true
|
||||
rm -f wgrplane-linux-amd64 wgrplane-linux-arm64 latest.json
|
||||
rm -rf app/frontend/node_modules app/frontend/dist
|
||||
echo "Cleanup done"
|
||||
deploy:
|
||||
if: "!contains(github.ref_name, 'beta') && !contains(github.ref_name, 'test')"
|
||||
uses: ./.gitea/workflows/deploy_call.yaml
|
||||
with:
|
||||
prerelease: false
|
||||
secrets: inherit
|
||||
|
||||
@@ -355,19 +355,36 @@ cd ../..
|
||||
# Server starts on :10087
|
||||
```
|
||||
|
||||
### Option 4: Systemd Service
|
||||
### Option 4: Native CLI / Systemd Service
|
||||
|
||||
The WGRplane binary includes a built-in CLI to manage its own systemd service.
|
||||
|
||||
```bash
|
||||
# Install service file
|
||||
sudo cp wgrplane.service /etc/systemd/system/
|
||||
sudo systemctl daemon-reload
|
||||
sudo systemctl enable wgrplane.service
|
||||
sudo systemctl start wgrplane.service
|
||||
# Check system dependencies first
|
||||
./wgrplane doctor
|
||||
|
||||
# Install as systemd service (auto-creates unit, enables, and starts)
|
||||
sudo ./wgrplane install
|
||||
|
||||
# View logs
|
||||
journalctl -u wgrplane.service -f
|
||||
journalctl -u wgrplane -f
|
||||
|
||||
# Other available commands:
|
||||
sudo ./wgrplane stop
|
||||
sudo ./wgrplane restart
|
||||
sudo ./wgrplane uninstall
|
||||
```
|
||||
|
||||
### Manual Serve & Config
|
||||
|
||||
To run the server manually in the foreground with custom ports:
|
||||
|
||||
```bash
|
||||
./wgrplane serve --port 8080 --host 127.0.0.1
|
||||
```
|
||||
|
||||
On first run, it generates a default configuration file at `~/.config/wgrplane/config.json`.
|
||||
|
||||
---
|
||||
|
||||
## 📁 Project Structure
|
||||
|
||||
+1
-1
Submodule app updated: 57ffe45ab7...b43866d42c
Reference in New Issue
Block a user