mirror of
https://github.com/theodore-song/polymarket-analyst.git
synced 2026-08-23 20:48:08 +00:00
61 lines
2.4 KiB
YAML
61 lines
2.4 KiB
YAML
name: Release Build 120 after Vercel quota reset
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "15 8 23 8 *"
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
concurrency:
|
|
group: release-build-120
|
|
cancel-in-progress: false
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 35
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
ref: main
|
|
fetch-depth: 0
|
|
- name: Trigger the deferred Vercel deployment
|
|
env:
|
|
ARENA_URL: https://polymarket-site-eta.vercel.app
|
|
run: |
|
|
if curl --fail --silent --show-error "${ARENA_URL}/?build_120_preflight=${GITHUB_RUN_ID}" | grep -q 'const BUILD_VERSION = 120;'; then
|
|
echo "Build 120 is already live."
|
|
exit 0
|
|
fi
|
|
printf 'Build 120 deployment retry from run %s at %s\n' "$GITHUB_RUN_ID" "$(date -u +%FT%TZ)" > .build-120-release-trigger
|
|
git config user.name "github-actions[bot]"
|
|
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
|
git add .build-120-release-trigger
|
|
git commit -m "Retry Build 120 production deployment"
|
|
git push origin HEAD:main
|
|
- name: Wait for Build 120 in production
|
|
env:
|
|
ARENA_URL: https://polymarket-site-eta.vercel.app
|
|
run: |
|
|
for attempt in $(seq 1 40); do
|
|
if curl --fail --silent --show-error "${ARENA_URL}/?build_120_wait=${GITHUB_RUN_ID}-${attempt}" | grep -q 'const BUILD_VERSION = 120;'; then
|
|
echo "Build 120 is live."
|
|
exit 0
|
|
fi
|
|
sleep 30
|
|
done
|
|
echo "Build 120 did not become live; Build 118 remains the autonomous runtime target."
|
|
exit 1
|
|
- name: Activate the Build 120 autonomous runner
|
|
run: |
|
|
git pull --ff-only origin main
|
|
perl -0pi -e 's/EXPECTED_BUILD: "118"/EXPECTED_BUILD: "120"/' .github/workflows/autonomous-cycle.yml
|
|
perl -0pi -e 's/assert\.match\(workflow, \/EXPECTED_BUILD: "118"\/\);/assert.match(workflow, \/EXPECTED_BUILD: "120"\/);/' scripts/test-autonomous-runtime.mjs
|
|
rm -f .build-120-release-trigger
|
|
git rm .github/workflows/release-build-120.yml
|
|
git add .github/workflows/autonomous-cycle.yml scripts/test-autonomous-runtime.mjs
|
|
git commit -m "Activate Build 120 autonomous cycles"
|
|
git push origin HEAD:main
|