17 Commits
pr-3 ... v1.2.3

Author SHA1 Message Date
Stephan
8f3d75c010 empty 2021-06-04 13:18:53 +02:00
Stephan
718926c776 fix 2021-06-04 13:18:41 +02:00
Stephan
21129c90a8 wip 2021-06-04 13:13:12 +02:00
Stephan
61d3055e77 wip 2021-06-04 13:07:45 +02:00
Stephan
4c44f1682f wip 2021-06-04 13:07:21 +02:00
Stephan
ead4715425 wip 2021-06-04 13:01:56 +02:00
Stephan
ceb331236f fix 2021-06-04 13:01:40 +02:00
Stephan
efb5140d5b wip 2021-06-04 12:55:10 +02:00
Stephan
675e60a9d3 fix 2021-06-04 12:54:55 +02:00
Stephan
eda31c222d wip 2021-06-04 12:27:49 +02:00
Stephan
85bb6c2ad2 fix 2021-06-04 12:25:57 +02:00
Stephan
ecd72cb678 fix 2021-06-04 12:24:07 +02:00
Stephan
56c654ac50 fix 2021-06-04 12:21:33 +02:00
Stephan
d8676bfa36 wip 2021-06-04 12:19:00 +02:00
Stephan
bce25f7840 fix 2021-06-04 12:18:45 +02:00
Stephan
32a0c2d240 wip 2021-06-04 12:15:13 +02:00
Stephan
fda37b8b20 wip 2021-06-04 12:14:08 +02:00

View File

@@ -23,6 +23,7 @@ jobs:
uses: actions/checkout@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
fetch-depth: 2 # get parent
- name: Report
shell: bash
@@ -37,31 +38,51 @@ jobs:
VERSION=${BRANCH#release/}
if [ "$VERSION" != "$BRANCH" ]; then
echo "Triggered by commit in version $VERSION release branch $BRANCH"
git fetch origin wip-$VERSION:wip-$VERSION
git fetch origin refs/tags/v$VERSION:refs/tags/v$VERSION
if [ $? -ne 0 ]; then
echo "Tag v$VERSION does not exist"
else
TAGSHA=$(git rev-parse wip-$VERSION)
TAGSHA=$(git rev-parse v$VERSION)
echo "FOUND TAG $TAGSHA"
if [ "$TAGSHA" != "${{ github.sha }}" ]; then
echo "TAG v$VERSION exists on another commit : error"
echo "::error::TAG v$VERSION exists on another commit (${{ github.sha }}) : error"
exit 1
else
echo "Tag v$VERSION exists on this commit: nothing to do here"
fi
fi
else
echo "Triggered by commit in non-release branch $BRANCH: error"
echo "::error::Triggered by commit in non-release branch $BRANCH: error"
exit 1
fi
exit 0
fi
TAG=${REF#refs/tags/}"
if [ "$TAG" != "$REF" ]; then
echo "Triggered by tag $TAG"
HZTAG=${REF#refs/tags/}
if [ "$HZTAG" != "$REF" ]; then
HZVERSION=${HZTAG#v}
if [ "$HZVERSION" != "$HZTAG" ]; then # it is a version tag
echo "Triggered by version tag $HZTAG"
git fetch origin refs/heads/release/$HZVERSION:refs/heads/release/$HZVERSION
if [ $? -ne 0 ]; then
echo "::error::Branch release/$HZVERSION does not exist"
exit 1
else
HZBRANCHSHA=$(git rev-parse release/$HZVERSION)
HZPARENTSHA=$(git rev-parse $HZTAG^1)
if [ "$HZBRANCHSHA" != "$HZPARENTSHA" ]; then
echo "::error::Tag parent is not HEAD of release/$HZVERSION but $HZPARENTSHA"
exit 1
else
echo "Tag parent is HEAD of release/$HZVERSION, proceed"
fi
fi
else
echo "::error::Triggered by non-version tag $HZTAG"
exit 1
fi
exit 0
fi
echo "ERR"
echo "::error::I am confused"
exit 1