mirror of
https://github.com/ProtonMail/proton-bridge.git
synced 2025-12-20 09:06:45 +00:00
Compare commits
12 Commits
master
...
917cf3fd51
| Author | SHA1 | Date | |
|---|---|---|---|
| 917cf3fd51 | |||
| 98c3a01e08 | |||
| ecb74dbb29 | |||
| fa9836e9cf | |||
| 29a10bc4df | |||
| 6ad1e89919 | |||
| 55a0f27ca9 | |||
| c8291c2d35 | |||
| 4d8d00a62f | |||
| f0c76b1114 | |||
| cd69a712e1 | |||
| 21029825c9 |
30
.gitea/workflows/ci.yml
Normal file
30
.gitea/workflows/ci.yml
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
name: nogui build
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
jobs:
|
||||||
|
try:
|
||||||
|
name: try & test
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- uses: actions/setup-go@v5
|
||||||
|
with:
|
||||||
|
go-version: '1.23.3'
|
||||||
|
|
||||||
|
- name: Install build-essentials
|
||||||
|
run: apt update -y && apt install build-essential libsecret-1-dev -y
|
||||||
|
|
||||||
|
- name: build nogui
|
||||||
|
run: make build-nogui
|
||||||
|
|
||||||
|
- uses: christopherhx/gitea-upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: nogui.zip
|
||||||
|
path: |
|
||||||
|
proton-bridge
|
||||||
|
bridge
|
||||||
@ -66,7 +66,7 @@ const (
|
|||||||
KeyChainName = "bridge-v3"
|
KeyChainName = "bridge-v3"
|
||||||
|
|
||||||
// Host is the hostname of the bridge server.
|
// Host is the hostname of the bridge server.
|
||||||
Host = "127.0.0.1"
|
Host = "0.0.0.0"
|
||||||
)
|
)
|
||||||
|
|
||||||
// nolint:goconst
|
// nolint:goconst
|
||||||
|
|||||||
Reference in New Issue
Block a user