Full build: Vite/React acid-terminal frontend (BEARER design system, Panchang/Sentient/Fragment Mono, neon layer, palette audit script), HoodquidityVaults Foundry contracts (single+dual deposits via Chainlink-style feeds, hybrid exit, 10% platform fee, boost, Genesis LP), Reown AppKit wallet connect with Robinhood Chain testnet (46630), live data from Dexscreener and onchain reads, partner portal, design-sync setup for claude.ai/design. Deploy: static via Forgejo Actions platform, BUILD_DIR=apps/web/dist (.env). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
36 lines
933 B
YAML
36 lines
933 B
YAML
name: Sync Release Branch
|
|
|
|
permissions: {}
|
|
|
|
on:
|
|
release:
|
|
types:
|
|
- created
|
|
|
|
jobs:
|
|
sync-release-branch:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
if: startsWith(github.event.release.tag_name, 'v1')
|
|
steps:
|
|
- name: Check out the repo
|
|
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
with:
|
|
persist-credentials: true
|
|
fetch-depth: 0
|
|
ref: v1
|
|
|
|
# The email is derived from the bots user id,
|
|
# found here: https://api.github.com/users/github-actions%5Bbot%5D
|
|
- name: Configure Git
|
|
run: |
|
|
git config user.name github-actions[bot]
|
|
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
|
|
|
|
- name: Sync Release Branch
|
|
run: |
|
|
git fetch --tags
|
|
git checkout v1
|
|
git reset --hard ${GITHUB_REF}
|
|
git push --force
|