morpho blue sepolia config + generic library resolution/deployment #577
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish the testnet image | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- "main" | |
tags: | |
- "v*" | |
pull_request: | |
branches: | |
- "main" | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: ${{ github.repository }}/testnet | |
jobs: | |
push-image: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Log in to the Container registry | |
uses: docker/[email protected] | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/[email protected] | |
with: | |
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | |
tags: | | |
# Add a tag matching the commit hash | |
type=sha,format=long,prefix= | |
# Add a version tag when a valid semver tag is pushed. | |
type=semver,pattern={{version}} | |
# Add the edge tag to represent the latest commit to main | |
type=raw,value=edge,enable={{is_default_branch}} | |
- name: Build and push the Testnet image | |
uses: docker/[email protected] | |
with: | |
context: . | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
build-args: | | |
ADMIN=${{ vars.TESTNET_ADMIN }} | |
DEPLOYER_PRIVATE_KEY=${{ vars.TESTNET_ADMIN_PRIVATE_KEY }} | |
IS_COMPETITION_MODE=true | |
BASE_TOKEN_NAME=Multi Collateral DAI | |
BASE_TOKEN_SYMBOL=DAI | |
VAULT_NAME=sDai | |
VAULT_SYMBOL=SDAI | |
VAULT_STARTING_RATE=0.05 # 5% APR | |
LIDO_STARTING_RATE=0.035 # 3.5% APR | |
ERC4626_HYPERDRIVE_POSITION_DURATION=365 # 1 year in seconds | |
ERC4626_HYPERDRIVE_CHECKPOINT_DURATION=1 # 1 day in seconds | |
ERC4626_HYPERDRIVE_FLAT_FEE=0.0005 # 0.05% APR | |
STETH_HYPERDRIVE_POSITION_DURATION=365 # 1 year in seconds | |
STETH_HYPERDRIVE_CHECKPOINT_DURATION=1 # 1 day in seconds | |
STETH_HYPERDRIVE_FLAT_FEE=0.0005 # 0.05% APR |