mirror of
https://github.com/netbox-community/netbox-docker.git
synced 2025-02-23 05:30:57 +01:00
8 lines
174 B
Bash
Executable File
8 lines
174 B
Bash
Executable File
#!/bin/bash
|
|
|
|
URL_LATEST=https://api.github.com/repos/digitalocean/netbox/releases/latest
|
|
|
|
VERSION=$(curl "${URL_LATEST}" | jq -r ".tag_name")
|
|
|
|
./build.sh "${VERSION}" --push
|