mirror of
https://github.com/Threnklyn/wg-ui.git
synced 2026-06-06 22:00:09 +02:00
18 lines
691 B
YAML
18 lines
691 B
YAML
steps:
|
|
- name: Build container image
|
|
agents:
|
|
queue: default
|
|
os: linux
|
|
commands:
|
|
- ./build.sh
|
|
- buildah push --format=v2s2 --authfile /root/.dockerhub/config.json embarkstudios/wireguard-ui:latest
|
|
- tar czf wireguard-ui-linux-amd64-latest.tar.gz ./wireguard-ui
|
|
- buildkite-agent artifact upload wireguard-ui-linux-amd64-latest.tar.gz
|
|
- name: Build debug container image
|
|
agents:
|
|
queue: default
|
|
os: linux
|
|
commands:
|
|
- buildah bud --format=docker --layers -t embarkstudios/wireguard-ui:debug -f Dockerfile.debug .
|
|
- buildah push --format=v2s2 --authfile /root/.dockerhub/config.json embarkstudios/wireguard-ui:debug
|