Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
imsodin committed Jul 16, 2023
1 parent 877f8ca commit 4cc7050
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,10 @@ jobs:
- name: Ensure release branch
run: |
git config --system --add safe.directory '*'
if ! git branch --contains $(git rev-parse HEAD) | grep release >/dev/null; then
git branch -a
git rev-parse HEAD
git branch --contains $(git rev-parse HEAD)
if ! git branch --contains $(git rev-parse HEAD) | grep release-test >/dev/null; then
echo "Tag is not part of release branch - aborting..."
exit 1
fi
Expand Down

0 comments on commit 4cc7050

Please sign in to comment.