1
mirror of https://github.com/xddxdd/bird-lg-go synced 2025-10-14 19:42:16 +02:00

6 Commits

Author SHA1 Message Date
Lan Tian
bb933954a9 release: v1.3.12.1 2025-10-13 19:35:11 -07:00
Lan Tian
4898a095b1 ci: update go release action dependency 2025-10-13 19:34:55 -07:00
Lan Tian
76fa6c6d06 ci: disable CGO when building release binaries 2025-10-13 19:34:23 -07:00
Lan Tian
ae6460d2d3 release: v1.3.12 2025-10-04 13:41:36 -07:00
Ljcbaby
d312f7de1b fix: " cuase unexpected TEXT but ' not 2025-10-04 13:40:45 -07:00
Ljcbaby
1097e69070 fix: " cuase unexpected TEXT but ' not 2025-10-04 13:40:45 -07:00
3 changed files with 14 additions and 10 deletions

View File

@@ -23,22 +23,26 @@ jobs:
uses: actions/checkout@v3
- name: Release frontend
uses: wangyoucao577/go-release-action@v1.40
uses: wangyoucao577/go-release-action@v1.53
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
project_path: "./frontend"
binary_name: "bird-lg-go"
pre_command: |
export CGO_ENABLED=0
- name: Release proxy
uses: wangyoucao577/go-release-action@v1.40
uses: wangyoucao577/go-release-action@v1.53
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
project_path: "./proxy"
binary_name: "bird-lgproxy-go"
pre_command: |
export CGO_ENABLED=0
docker-release:
runs-on: ubuntu-latest

View File

@@ -1 +1 @@
v1.3.11
v1.3.12.1

View File

@@ -19,13 +19,13 @@ import (
var primitiveMap = map[string]string{
"summary": "show protocols",
"detail": "show protocols all \"%s\"",
"route_from_protocol": "show route protocol \"%s\"",
"route_from_protocol_all": "show route protocol \"%s\" all",
"route_from_protocol_primary": "show route protocol \"%s\" primary",
"route_from_protocol_all_primary": "show route protocol \"%s\" all primary",
"route_filtered_from_protocol": "show route filtered protocol \"%s\"",
"route_filtered_from_protocol_all": "show route filtered protocol \"%s\" all",
"detail": "show protocols all '%s'",
"route_from_protocol": "show route protocol '%s'",
"route_from_protocol_all": "show route protocol '%s' all",
"route_from_protocol_primary": "show route protocol '%s' primary",
"route_from_protocol_all_primary": "show route protocol '%s' all primary",
"route_filtered_from_protocol": "show route filtered protocol '%s'",
"route_filtered_from_protocol_all": "show route filtered protocol '%s' all",
"route_from_origin": "show route where bgp_path.last = %s",
"route_from_origin_all": "show route where bgp_path.last = %s all",
"route_from_origin_primary": "show route where bgp_path.last = %s primary",