Some checks are pending
Go Benchmark / Performance Regression Check (push) Waiting to run
Cerberus Integration / Cerberus Security Stack Integration (push) Waiting to run
Upload Coverage to Codecov / Backend Codecov Upload (push) Waiting to run
Upload Coverage to Codecov / Frontend Codecov Upload (push) Waiting to run
CodeQL - Analyze / CodeQL analysis (go) (push) Waiting to run
CodeQL - Analyze / CodeQL analysis (javascript-typescript) (push) Waiting to run
CrowdSec Integration / CrowdSec Bouncer Integration (push) Waiting to run
Docker Build, Publish & Test / build-and-push (push) Waiting to run
Docker Build, Publish & Test / Security Scan PR Image (push) Blocked by required conditions
Quality Checks / Auth Route Protection Contract (push) Waiting to run
Quality Checks / Codecov Trigger/Comment Parity Guard (push) Waiting to run
Quality Checks / Backend (Go) (push) Waiting to run
Quality Checks / Frontend (React) (push) Waiting to run
Rate Limit integration / Rate Limiting Integration (push) Waiting to run
Security Scan (PR) / Trivy Binary Scan (push) Waiting to run
Supply Chain Verification (PR) / Verify Supply Chain (push) Waiting to run
WAF integration / Coraza WAF Integration (push) Waiting to run
82 lines
1.8 KiB
YAML
Executable File
82 lines
1.8 KiB
YAML
Executable File
version: 2
|
|
|
|
# NOTE: Charon uses a Docker-only deployment model.
|
|
# This GoReleaser configuration is used exclusively for changelog generation.
|
|
# The builds, archives, and nfpms sections below are kept for potential
|
|
# future use but are not currently utilized in the release workflow.
|
|
# All distribution happens via Docker images:
|
|
# - Docker Hub: docker pull wikid82/charon:latest
|
|
# - GHCR: docker pull ghcr.io/wikid82/charon:latest
|
|
|
|
project_name: charon
|
|
|
|
builds:
|
|
- id: linux
|
|
dir: backend
|
|
main: ./cmd/api
|
|
binary: charon
|
|
env:
|
|
- CGO_ENABLED=0
|
|
goos:
|
|
- linux
|
|
goarch:
|
|
- amd64
|
|
- arm64
|
|
ldflags:
|
|
- -s -w
|
|
- -X github.com/Wikid82/charon/backend/internal/version.Version={{.Version}}
|
|
- -X github.com/Wikid82/charon/backend/internal/version.GitCommit={{.Commit}}
|
|
- -X github.com/Wikid82/charon/backend/internal/version.BuildTime={{.Date}}
|
|
|
|
archives:
|
|
- formats:
|
|
- tar.gz
|
|
id: linux
|
|
ids:
|
|
- linux
|
|
name_template: >-
|
|
{{ .ProjectName }}_
|
|
{{- .Version }}_
|
|
{{- .Os }}_
|
|
{{- .Arch }}
|
|
files:
|
|
- LICENSE
|
|
- README.md
|
|
|
|
nfpms:
|
|
- id: packages
|
|
ids:
|
|
- linux
|
|
package_name: charon
|
|
vendor: Charon
|
|
homepage: https://github.com/Wikid82/charon
|
|
maintainer: Wikid82
|
|
description: "Charon - A powerful reverse proxy manager"
|
|
license: MIT
|
|
formats:
|
|
- deb
|
|
- rpm
|
|
contents:
|
|
- src: ./backend/data/
|
|
dst: /var/lib/charon/data/
|
|
type: dir
|
|
- src: ./frontend/dist/
|
|
dst: /usr/share/charon/frontend/
|
|
type: dir
|
|
dependencies:
|
|
- libc6
|
|
- ca-certificates
|
|
|
|
checksum:
|
|
name_template: 'checksums.txt'
|
|
|
|
snapshot:
|
|
version_template: "{{ .Tag }}-next"
|
|
|
|
changelog:
|
|
sort: asc
|
|
filters:
|
|
exclude:
|
|
- '^docs:'
|
|
- '^test:'
|