ci: don't actually fail

This commit is contained in:
goaaats 2021-10-31 21:41:16 +01:00 committed by GitHub
parent 396695f21c
commit 803b61a5a9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,14 +15,14 @@ jobs:
if [ -z "$version" ]; if [ -z "$version" ];
then then
echo "No build version found"; echo "No build version found";
exit -1; echo "::set-output name=D_TAG_RESULT::fail";
else else
export D_TAG_VERSION=$version; export D_TAG_VERSION=$version;
echo "::set-output name=D_TAG_VERSION::$D_TAG_VERSION"; echo "::set-output name=D_TAG_VERSION::$D_TAG_VERSION";
exit 0; echo "::set-output name=D_TAG_RESULT::pass";
fi fi
- name: Create Tag - name: Create Tag
if: steps.s1.conclusion == 'success' if: steps.s1.outputs.D_TAG_RESULT == 'pass'
uses: actions/github-script@v3 uses: actions/github-script@v3
with: with:
github-token: ${{ github.token }} github-token: ${{ github.token }}