mirror of
https://github.com/wahyd4/golink.git
synced 2026-08-09 05:05:56 +10:00
Change-Id: I18c53e217be1f1342617e0ba20c2bcd3488fd263 Signed-off-by: Maisem Ali <maisem@tailscale.com>
16 lines
307 B
Bash
Executable File
16 lines
307 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
export PATH="$PWD/../../tool":$PATH
|
|
|
|
go run github.com/tailscale/mkctr \
|
|
--target="flyio" \
|
|
--base="alpine:3.15" \
|
|
--gopaths="tailscale.io/cmd/golink:/tsgo" \
|
|
--tags="latest" \
|
|
--repos="registry.fly.io/tsgo" \
|
|
--push \
|
|
/tsgo -verbose -linkdir=/root/linkdata -mkdir
|