https://github.com/beeper/bridge-cd-tool
Helper for notifying the Beeper API server about bridge updates in order to automatically deploy them
https://github.com/beeper/bridge-cd-tool
Last synced: 2 months ago
JSON representation
Helper for notifying the Beeper API server about bridge updates in order to automatically deploy them
- Host: GitHub
- URL: https://github.com/beeper/bridge-cd-tool
- Owner: beeper
- License: mit
- Created: 2022-08-15T16:28:48.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2026-03-28T22:28:47.000Z (3 months ago)
- Last Synced: 2026-03-29T00:58:35.570Z (3 months ago)
- Language: Go
- Size: 70.3 KB
- Stars: 2
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bridge-cd-tool
This is a simple program used to notify the Beeper API server about bridge updates.
It's probably not very interesting for others.
## Usage as a GitHub Action
```yaml
- name: Run bridge CD tool
uses: beeper/bridge-cd-tool@main
env:
CI_REGISTRY: "${{ secrets.CI_REGISTRY }}"
BEEPER_DEV_ADMIN_API_URL: "${{ secrets.BEEPER_DEV_ADMIN_API_URL }}"
BEEPER_STAGING_ADMIN_API_URL: "${{ secrets.BEEPER_STAGING_ADMIN_API_URL }}"
BEEPER_PROD_ADMIN_API_URL: "${{ secrets.BEEPER_PROD_ADMIN_API_URL }}"
BEEPER_DEV_ADMIN_NIGHTLY_PASS: "${{ secrets.BEEPER_DEV_ADMIN_NIGHTLY_PASS }}"
BEEPER_STAGING_ADMIN_NIGHTLY_PASS: "${{ secrets.BEEPER_STAGING_ADMIN_NIGHTLY_PASS }}"
BEEPER_PROD_ADMIN_NIGHTLY_PASS: "${{ secrets.BEEPER_PROD_ADMIN_NIGHTLY_PASS }}"
```