mirror of
https://github.com/zoriya/cish.git
synced 2025-12-06 07:16:16 +00:00
8 lines
190 B
Bash
8 lines
190 B
Bash
#!/usr/bin/env bash
|
|
|
|
VERSION=${REF:1} # Remove v prefix
|
|
VERSION=${REF%.*} # Remove minor version
|
|
sed "s/edge/$VERSION/" -i docker-compose.yml
|
|
|
|
cp docker-compose.yaml .env.example "$RELASE/"
|