mirror of
https://github.com/theodore-song/polymarket-analyst.git
synced 2026-08-24 04:58:08 +00:00
Convert verified complete NO bundles immediately
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
name: Release Build 123 after Vercel quota reset
|
||||
name: Release Build 124 after Vercel quota reset
|
||||
|
||||
on:
|
||||
schedule:
|
||||
@@ -9,7 +9,7 @@ permissions:
|
||||
contents: write
|
||||
|
||||
concurrency:
|
||||
group: release-build-123
|
||||
group: release-build-124
|
||||
cancel-in-progress: false
|
||||
|
||||
jobs:
|
||||
@@ -25,36 +25,36 @@ jobs:
|
||||
env:
|
||||
ARENA_URL: https://polymarket-site-eta.vercel.app
|
||||
run: |
|
||||
if curl --fail --silent --show-error "${ARENA_URL}/?build_123_preflight=${GITHUB_RUN_ID}" | grep -q 'const BUILD_VERSION = 123;'; then
|
||||
echo "Build 123 is already live."
|
||||
if curl --fail --silent --show-error "${ARENA_URL}/?build_124_preflight=${GITHUB_RUN_ID}" | grep -q 'const BUILD_VERSION = 124;'; then
|
||||
echo "Build 124 is already live."
|
||||
exit 0
|
||||
fi
|
||||
printf 'Build 123 deployment retry from run %s at %s\n' "$GITHUB_RUN_ID" "$(date -u +%FT%TZ)" > .build-123-release-trigger
|
||||
printf 'Build 124 deployment retry from run %s at %s\n' "$GITHUB_RUN_ID" "$(date -u +%FT%TZ)" > .build-124-release-trigger
|
||||
git config user.name "github-actions[bot]"
|
||||
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
||||
git add .build-123-release-trigger
|
||||
git commit -m "Retry Build 123 production deployment"
|
||||
git add .build-124-release-trigger
|
||||
git commit -m "Retry Build 124 production deployment"
|
||||
git push origin HEAD:main
|
||||
- name: Wait for Build 123 in production
|
||||
- name: Wait for Build 124 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_123_wait=${GITHUB_RUN_ID}-${attempt}" | grep -q 'const BUILD_VERSION = 123;'; then
|
||||
echo "Build 123 is live."
|
||||
if curl --fail --silent --show-error "${ARENA_URL}/?build_124_wait=${GITHUB_RUN_ID}-${attempt}" | grep -q 'const BUILD_VERSION = 124;'; then
|
||||
echo "Build 124 is live."
|
||||
exit 0
|
||||
fi
|
||||
sleep 30
|
||||
done
|
||||
echo "Build 123 did not become live; Build 118 remains the autonomous runtime target."
|
||||
echo "Build 124 did not become live; Build 118 remains the autonomous runtime target."
|
||||
exit 1
|
||||
- name: Activate the Build 123 autonomous runner
|
||||
- name: Activate the Build 124 autonomous runner
|
||||
run: |
|
||||
git pull --ff-only origin main
|
||||
perl -0pi -e 's/EXPECTED_BUILD: "118"/EXPECTED_BUILD: "123"/' .github/workflows/autonomous-cycle.yml
|
||||
perl -0pi -e 's/assert\.match\(workflow, \/EXPECTED_BUILD: "118"\/\);/assert.match(workflow, \/EXPECTED_BUILD: "123"\/);/' scripts/test-autonomous-runtime.mjs
|
||||
rm -f .build-123-release-trigger
|
||||
git rm .github/workflows/release-build-123.yml
|
||||
perl -0pi -e 's/EXPECTED_BUILD: "118"/EXPECTED_BUILD: "124"/' .github/workflows/autonomous-cycle.yml
|
||||
perl -0pi -e 's/assert\.match\(workflow, \/EXPECTED_BUILD: "118"\/\);/assert.match(workflow, \/EXPECTED_BUILD: "124"\/);/' scripts/test-autonomous-runtime.mjs
|
||||
rm -f .build-124-release-trigger
|
||||
git rm .github/workflows/release-build-124.yml
|
||||
git add .github/workflows/autonomous-cycle.yml scripts/test-autonomous-runtime.mjs
|
||||
git commit -m "Activate Build 123 autonomous cycles"
|
||||
git commit -m "Activate Build 124 autonomous cycles"
|
||||
git push origin HEAD:main
|
||||
Reference in New Issue
Block a user