00a63a202c
Deploy marketing to Cloud Run / deploy (push) Failing after 5s
act_runner v0.6 host-mode hits a 'permission denied' error on .git/objects/pack/*.idx when running two checkout steps in the same job. Drop down to a plain git clone of engram-lang and pin EL_HOME outside the workspace.
143 lines
4.8 KiB
YAML
143 lines
4.8 KiB
YAML
name: Deploy marketing to Cloud Run
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- 'src/**'
|
|
- 'dist/**'
|
|
- 'runtime/**'
|
|
- 'Dockerfile.stage'
|
|
- 'build-stage.sh'
|
|
- '.gitea/workflows/deploy.yaml'
|
|
|
|
workflow_dispatch:
|
|
inputs:
|
|
tag:
|
|
description: 'Image tag to build and deploy (defaults to short SHA)'
|
|
required: false
|
|
type: string
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 30
|
|
|
|
permissions:
|
|
contents: read
|
|
id-token: write # needed for the OIDC token used by WIF
|
|
|
|
steps:
|
|
- name: Checkout neuron-web
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 1
|
|
|
|
# foundation/el contains the elc compiler that build-stage.sh shells out
|
|
# to. We clone engram-lang directly with git rather than a second
|
|
# actions/checkout call — act_runner v0.6 in host mode hits a
|
|
# `permission denied` error on .git/objects/pack/*.idx when running
|
|
# two checkout steps in the same job. EL_HOME is pinned outside the
|
|
# workspace so the path build-stage.sh expects (../../foundation/el)
|
|
# resolves correctly.
|
|
- name: Clone engram-lang (foundation/el — provides the elc compiler)
|
|
env:
|
|
CHECKOUT_TOKEN: ${{ secrets.CHECKOUT_TOKEN }}
|
|
run: |
|
|
set -euo pipefail
|
|
DEST="${{ github.workspace }}/../foundation-el"
|
|
rm -rf "$DEST"
|
|
git clone --depth 1 \
|
|
"https://will:${CHECKOUT_TOKEN}@git.neuralplatform.ai/neuron-technologies/engram-lang.git" \
|
|
"$DEST"
|
|
ls -la "$DEST" | head -5
|
|
echo "EL_HOME=$DEST" >> "$GITHUB_ENV"
|
|
|
|
- name: Authenticate to GCP (Workload Identity)
|
|
id: auth
|
|
uses: google-github-actions/auth@v2
|
|
with:
|
|
workload_identity_provider: ${{ secrets.GCP_WIF_PROVIDER }}
|
|
service_account: ${{ secrets.GCP_DEPLOY_SA }}
|
|
# If WIF doesn't work against this Gitea instance, swap in:
|
|
# credentials_json: ${{ secrets.GCP_SA_KEY }}
|
|
|
|
- name: Set up gcloud SDK
|
|
uses: google-github-actions/setup-gcloud@v2
|
|
with:
|
|
project_id: neuron-785695
|
|
|
|
- name: Configure docker auth for Artifact Registry
|
|
run: gcloud auth configure-docker us-central1-docker.pkg.dev --quiet
|
|
|
|
- name: Build elc if not already present
|
|
run: |
|
|
set -euo pipefail
|
|
cd "$EL_HOME"
|
|
if [ ! -x dist/platform/elc ]; then
|
|
./build.sh
|
|
fi
|
|
ls -la dist/platform/elc
|
|
|
|
- name: Compute image tag
|
|
id: tag
|
|
run: |
|
|
TAG="${{ inputs.tag }}"
|
|
if [ -z "$TAG" ]; then TAG="ci-${GITHUB_SHA:0:8}"; fi
|
|
IMAGE="us-central1-docker.pkg.dev/neuron-785695/neuron-marketing/marketing:${TAG}"
|
|
echo "tag=${TAG}" >> "$GITHUB_OUTPUT"
|
|
echo "image=${IMAGE}" >> "$GITHUB_OUTPUT"
|
|
echo "Will build and push: ${IMAGE}"
|
|
|
|
- name: Build image (build-stage.sh)
|
|
env:
|
|
EXTRACT_JS: '1'
|
|
run: |
|
|
./build-stage.sh "${{ steps.tag.outputs.tag }}"
|
|
docker tag "marketing:${{ steps.tag.outputs.tag }}" "${{ steps.tag.outputs.image }}"
|
|
docker tag "marketing:${{ steps.tag.outputs.tag }}" "us-central1-docker.pkg.dev/neuron-785695/neuron-marketing/marketing:latest"
|
|
|
|
- name: Push image
|
|
run: |
|
|
docker push "${{ steps.tag.outputs.image }}"
|
|
docker push "us-central1-docker.pkg.dev/neuron-785695/neuron-marketing/marketing:latest"
|
|
|
|
- name: Deploy to all marketing prod regions in parallel
|
|
env:
|
|
IMAGE: ${{ steps.tag.outputs.image }}
|
|
run: |
|
|
set -euo pipefail
|
|
deploy() {
|
|
local region="$1" svc="$2"
|
|
gcloud run deploy "$svc" \
|
|
--image "$IMAGE" \
|
|
--region "$region" \
|
|
--project neuron-785695 \
|
|
--quiet
|
|
}
|
|
deploy us-central1 marketing-prod-us &
|
|
deploy europe-west1 marketing-prod-eu &
|
|
deploy asia-northeast1 marketing-prod-apac &
|
|
wait
|
|
|
|
- name: Flip traffic to latest revision
|
|
run: |
|
|
set -euo pipefail
|
|
for r in us-central1:marketing-prod-us europe-west1:marketing-prod-eu asia-northeast1:marketing-prod-apac; do
|
|
REGION="${r%%:*}"; SVC="${r##*:}"
|
|
gcloud run services update-traffic "$SVC" \
|
|
--region "$REGION" --project neuron-785695 \
|
|
--to-latest --quiet
|
|
done
|
|
|
|
- name: Smoke check production endpoints
|
|
run: |
|
|
set -euo pipefail
|
|
for url in \
|
|
https://neurontechnologies.ai/ \
|
|
https://www.neurontechnologies.ai/ ; do
|
|
echo "GET $url"
|
|
curl -sSI "$url" | head -3
|
|
done
|
|
echo "Deployed tag: ${{ steps.tag.outputs.tag }}"
|