🚀 (.gitea/workflows/on_release.yml): Uncomment curl command to enable deployment on release
All checks were successful
Creates a docker image for production / Build the docker image (push) Successful in 27s

⬆️ (Dockerfile): Update Dockerfile to use uppercase 'AS' for better readability and consistency
This commit is contained in:
2025-02-05 11:00:42 -03:00
parent 80c0890bdb
commit d3c7470a05
2 changed files with 11 additions and 11 deletions

View File

@@ -40,16 +40,16 @@ jobs:
"email": "'$USERNAME'",
"password": "'$PASSWORD'"
}' | jq -r '.token')
# curl --location --silent 'https://deployer.makecodes.dev/deploy' \
# --header 'Content-Type: application/json' \
# --header "Authorization: Bearer $TOKEN" \
# --data '{
# "image": "docker.nexus.makecodes.dev/mines/frontend",
# "service": "mines_frontend",
# "version": "${{ github.ref_name }}",
# "pipeline": "${{ github.run_number }}",
# "repository": "mines/frontend"
# }'
curl --location --silent 'https://deployer.makecodes.dev/deploy' \
--header 'Content-Type: application/json' \
--header "Authorization: Bearer $TOKEN" \
--data '{
"image": "docker.nexus.makecodes.dev/mines/frontend",
"service": "mines_frontend",
"version": "${{ github.ref_name }}",
"pipeline": "${{ github.run_number }}",
"repository": "mines/frontend"
}'
env:
USERNAME: ${{ secrets.SERVER_AUTH_USERNAME }}
PASSWORD: ${{ secrets.SERVER_AUTH_PASSWORD }}