Skip to content

Commit

Permalink
minor fix#2
Browse files Browse the repository at this point in the history
  • Loading branch information
0xDEnYO committed Nov 27, 2024
1 parent f4f597a commit 34fbaed
Show file tree
Hide file tree
Showing 2 changed files with 126 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/types.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,12 @@ jobs:
exit 1
fi
# Validate semver format
if [[ ! "$LATEST_TAG" =~ ^[0-9]+\.[0-9]+\.[0-9]+(-beta)?$ ]]; then
echo "ERROR: Invalid version format: $LATEST_TAG (not a valid semver format)"
exit 1
fi
echo "LATEST_TAG=$LATEST_TAG"
echo "LATEST_TAG=$LATEST_TAG" >> $GITHUB_ENV
Expand Down
120 changes: 120 additions & 0 deletions .github/workflows_deactivated/types.oldVersion.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,120 @@
name: Types Bindings

on:
push:

env:
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}

jobs:
generate-tag:
runs-on: ubuntu-latest
permissions:
contents: read

steps:
- name: Checkout contracts repository
uses: actions/checkout@v4
with:
ref: ${{ env.BRANCH_NAME }}

- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1

- name: Install Solidity Libs
run: forge install

- name: Setup Node.js
uses: actions/[email protected]
with:
node-version: 20

- name: Install Node deps
run: yarn install

- name: Generate ABI
run: yarn abi:generate

- name: Generate types bindings
run: yarn typechain

- name: Checkout lifi-contract-types repository
uses: actions/checkout@v4
with:
repository: lifinance/lifi-contract-types
path: lifi-contract-types
ssh-key: ${{ secrets.SSH_REPO_TOKEN }}
ref: main

- name: Copy types bindings
run: |
rm -r lifi-contract-types/src/
mv typechain lifi-contract-types/src
cp diamond.json lifi-contract-types/dist/
- name: Build contract types
run: cd lifi-contract-types && yarn install && yarn build

- name: Retrieve latest Tag
id: latest_release
run: |
# fetch tag releases
release_json=$(curl https://api.github.com/repos/lifinance/lifi-contract-types/tags)
# get the latest tag
LATEST_TAG=$(echo "$release_json" | jq -r '.[0].name')
# we need to make sure that on staging we're going to update a -beta version, if any
if [[ "$BRANCH_NAME" != "main" ]]; then
# if it has already "-beta", no other action is required, since it means
# that we're already going to update the latest staging release
if [[ "$LATEST_TAG" != *"beta"* ]]; then
# otherwise, start looping through the tags and search for the latest -beta tag
while read item; do
tag_name=$(jq -r '.name' <<< "$item")
# check if there's already a latest tag beta release
# and, if present, use it instead of the main one
# if we end up without any latest beta tag, we will create a beta release from the latest tag
if [[ "$tag_name" == "$LATEST_TAG-$beta"* ]]; then
LATEST_TAG=$tag_name
break
fi
done <<<$(echo "$release_json" | jq -c -r '.[]')
fi
fi
echo "latest tag: $LATEST_TAG"
echo "LATEST_TAG=${LATEST_TAG}" >> $GITHUB_ENV
- name: Update version
env:
MESSAGE: ${{ github.event.head_commit.message }}
id: bump_version
uses: christian-draeger/[email protected]
with:
current-version: '${{ env.LATEST_TAG }}'
version-fragment: "${{ env.BRANCH_NAME == 'main' && (contains(env.MESSAGE, 'major') && 'major' || contains(env.MESSAGE, 'feat') && 'feature' || 'bug') || 'beta' }}"

- name: Push tag
env:
MESSAGE: ${{ github.event.head_commit.message }}
if: steps.bump_version.outputs.next-version
run: |
cd lifi-contract-types
tmp=$(mktemp)
jq '.version="${{ steps.bump_version.outputs.next-version }}"' package.json > "$tmp" && mv "$tmp" package.json
git config user.name github-actions
git config user.email [email protected]
echo 'Updating version from ${{ env.LATEST_TAG }} to ${{ steps.bump_version.outputs.next-version }}'
git add src/*
git add dist/*
git add package.json
git commit -m 'actions: new contracts version ${{ steps.bump_version.outputs.next-version }}'
# Sanitize the commit message by removing single quotes
COMMIT_MSG=$(echo "$MESSAGE" | sed "s/'//g")
git tag -a v${{ steps.bump_version.outputs.next-version }} -m "$MESSAGE"
git push origin tag v${{ steps.bump_version.outputs.next-version }}
if [[ "$BRANCH_NAME" == "main" ]]; then
git push -u origin $BRANCH_NAME
fi

0 comments on commit 34fbaed

Please sign in to comment.