José Henrique 2487076e92
All checks were successful
Main Build & Deploy / Build and Push Docker Image (amd64 and arm64) (push) Successful in 2m59s
Main Build & Deploy / Deploy Live (push) Successful in 5s
feat: add production environment variables and update Gitea workflow for deployment
2025-02-16 11:47:28 -03:00

12 lines
391 B
Bash

#!/bin/sh
for i in $(env | grep VITE_)
do
key=$(echo $i | cut -d '=' -f 1)
value=$(echo $i | cut -d '=' -f 2-)
echo $key=$value
# sed All files
# find /usr/share/nginx/html -type f -exec sed -i "s|${key}|${value}|g" '{}' +
# sed JS and CSS only
find /usr/share/nginx/html -type f \( -name '*.js' -o -name '*.css' \) -exec sed -i "s|${key}|${value}|g" '{}' +
done