Skip to content

Commit

Permalink
remove makefile version check
Browse files Browse the repository at this point in the history
  • Loading branch information
kjnilsson committed Jun 26, 2024
1 parent 6befc34 commit ec6fbfe
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:
run: |
sudo npm install --global --silent @bazel/buildozer
VERSION_ERLANG_MK="$(sed -ne 's/PROJECT_VERSION = \(.*\)/\1/p' Makefile)"
# VERSION_ERLANG_MK="$(sed -ne 's/PROJECT_VERSION = \(.*\)/\1/p' Makefile)"
if [[ "${{ github.ref_name }}" != "v$VERSION_ERLANG_MK" ]]; then
echo "Version in Makefile ($VERSION_ERLANG_MK) does not match tag (${{ github.ref_name }})"
exit 1
fi
# if [[ "${{ github.ref_name }}" != "v$VERSION_ERLANG_MK" ]]; then
# echo "Version in Makefile ($VERSION_ERLANG_MK) does not match tag (${{ github.ref_name }})"
# exit 1
# fi
VERSION_BAZEL="$(cat MODULE.bazel | buildozer 'print version' -:%module)"
Expand Down

0 comments on commit ec6fbfe

Please sign in to comment.