6 lines
268 B
Bash
Executable File
6 lines
268 B
Bash
Executable File
#!/bin/bash
|
|
curl -sLo manifest-tool "https://github.com/estesp/manifest-tool/releases/download/v1.0.3/manifest-tool-linux-amd64"
|
|
chmod +x manifest-tool
|
|
sed -e "s#%image_name%#$IMAGE_NAME#" manifest.template > manifest.yaml
|
|
./manifest-tool push from-spec manifest.yaml
|