Skip to content

Commit

Permalink
Merge pull request #85 from bandohq/luisgj-patch-2
Browse files Browse the repository at this point in the history
Update badges.
  • Loading branch information
luisgj authored Nov 26, 2024
2 parents 15562f7 + 23783ab commit 736211e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build-abis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: Build ABIs
on:
push:
branches: [main]
paths:
- '**/*.sol'
jobs:
build-abis:
runs-on: ubuntu-latest
Expand All @@ -20,7 +22,7 @@ jobs:
run: |
yarn
forge build
- name: Checkout contract-abis repo
- name: Checkout contract-abis
uses: actions/checkout@v3
with:
repository: bandohq/contract-abis
Expand All @@ -33,7 +35,8 @@ jobs:
git config user.name "bando-bot"
git config user.email "[email protected]"
git add .
git diff --staged --quiet || git commit -m "Update ABIs from main repo"
DATE=$(date '+%Y-%m-%d')
git diff --staged --quiet || git commit -m "Update ABIs $DATE"
VERSION=$(date '+%Y%m%d%H%M%S')
git tag -a "v$VERSION" -m "Release v$VERSION"
git push origin main --tags
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

The Bando Fulfillment Protocol EVM smart contracts suite suite.

[![Run Tests and Coverage](https://github.com/bandohq/evm-fulfillment-protocol/actions/workflows/hardhat-test.yaml/badge.svg)](https://github.com/bandohq/evm-fulfillment-protocol/actions/workflows/hardhat-test.yaml)
[![Run Tests and Coverage](https://github.com/bandohq/evm-fulfillment-protocol/actions/workflows/ci.yaml/badge.svg)](https://github.com/bandohq/evm-fulfillment-protocol/actions/workflows/ci.yaml)
[![Build](https://github.com/bandohq/evm-fulfillment-protocol/actions/workflows/build-abis.yml/badge.svg)](https://github.com/bandohq/evm-fulfillment-protocol/actions/workflows/build-abis.yml)

## Overview
For a more detail view of the protocol architecture, security considerations, and product as a whole, please refer to the [Official Docs](https://docs.bando.cool).
Expand Down

0 comments on commit 736211e

Please sign in to comment.