fix: bump abacus to include slippage update (#836) #95
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: Workflow for Release | |
on: | |
push: | |
tags: | |
- 'release/v*' | |
- 'hotfix/v*' | |
jobs: | |
sync-release-branch: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.WORKFLOW_TOKEN }} | |
- name: Fetch all history | |
run: git fetch --unshallow || git fetch --all | |
- name: Determine Tag Type | |
id: tagtype | |
run: | | |
if [[ ${{ github.ref }} == refs/tags/release/v* ]]; then | |
echo "::set-output name=type::release" | |
elif [[ ${{ github.ref }} == refs/tags/hotfix/v* ]]; then | |
echo "::set-output name=type::hotfix" | |
fi | |
- name: Check out the release branch | |
run: | | |
git checkout release || git checkout -b release | |
- name: Sync release branch to tag | |
env: | |
GITHUB_TOKEN: ${{ secrets.WORKFLOW_TOKEN }} | |
run: | | |
git reset --hard ${{ github.ref }} | |
git push -f origin release |