diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 1f6409d..e649d8a 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -132,7 +132,7 @@ jobs: echo "Existing stack found with id=${STACK_ID}; sending update request" PAYLOAD=$(jq -n \ - --rawfile stack_file docker-compose.yml \ + --rawfile stack_file docker-compose.prod.yml \ '{StackFileContent: $stack_file, Env: [], Prune: false, PullImage: false}') APPLY_HTTP_CODE=$(curl -sS -X PUT \ @@ -150,7 +150,7 @@ jobs: PAYLOAD=$(jq -n \ --arg name "${STACK_NAME}" \ - --rawfile stack_file docker-compose.yml \ + --rawfile stack_file docker-compose.prod.yml \ '{Name: $name, StackFileContent: $stack_file, Env: [], FromAppTemplate: false}') APPLY_HTTP_CODE=$(curl -sS -X POST \