Skip to content

[AUTO]assetlist and chainlist Update (#1920) #1039

[AUTO]assetlist and chainlist Update (#1920)

[AUTO]assetlist and chainlist Update (#1920) #1039

Workflow file for this run

name: Osmosis Front-End Deployment
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Check latest commit matches API
id: check_commit
run: |
MAX_RETRIES=5
RETRY_COUNT=0
while [ $RETRY_COUNT -lt $MAX_RETRIES ]; do
LATEST_COMMIT=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" https://api.github.com/repos/${{ github.repository }}/commits/main | jq -r '.sha')
if [ "$LATEST_COMMIT" != "" ]; then
echo "Latest commit: $LATEST_COMMIT"
echo "Workflow commit: ${{ github.sha }}"
if [ "$LATEST_COMMIT" != "${{ github.sha }}" ]; then
echo "The workflow commit and the latest commit do not match."
exit 1
fi
exit 0
fi
RETRY_COUNT=$((RETRY_COUNT+1))
echo "Failed to fetch latest commit, retrying ($RETRY_COUNT/$MAX_RETRIES)..."
sleep 5
done
echo "Failed to fetch latest commit after $MAX_RETRIES attempts."
exit 1
- name: Deploy preview
run: curl -X POST ${{ secrets.VERCEL_WEBHOOK_DEPLOY_STAGE }}
- name: Deploy testnet
run: curl -X POST ${{ secrets.VERCEL_WEBHOOK_DEPLOY_TESTNET }}
- name: Deploy production
run: curl -X POST ${{ secrets.VERCEL_WEBHOOK_DEPLOY_PRODUCTION }}