Skip to content

Commit

Permalink
Merge pull request #8291 from OpenMined/rasswanth/fix_release
Browse files Browse the repository at this point in the history
Fix Release
  • Loading branch information
rasswanth-s authored Nov 29, 2023
2 parents 75ffad5 + df9b8a0 commit ae2ee66
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/cd-syft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade bump2version
pip install --upgrade bump2version tox
- name: Bump the Version
id: bump-version
Expand Down Expand Up @@ -107,6 +107,14 @@ jobs:
fi
echo "grid_version=$(python packages/grid/VERSION)" >> $GITHUB_OUTPUT
# TODO: Optimize redundant bump protocol version checks
- name: Check and Bump Protocol Version
run: |
if [[ $(python packages/grid/VERSION) != *"beta"* ]]; then
export BUMP=True
fi
tox -e syft.protocol.check
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
Expand Down

0 comments on commit ae2ee66

Please sign in to comment.