mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
ci: don't actually fail
This commit is contained in:
parent
396695f21c
commit
803b61a5a9
1 changed files with 3 additions and 3 deletions
6
.github/workflows/tag-build.yml
vendored
6
.github/workflows/tag-build.yml
vendored
|
|
@ -15,14 +15,14 @@ jobs:
|
|||
if [ -z "$version" ];
|
||||
then
|
||||
echo "No build version found";
|
||||
exit -1;
|
||||
echo "::set-output name=D_TAG_RESULT::fail";
|
||||
else
|
||||
export D_TAG_VERSION=$version;
|
||||
echo "::set-output name=D_TAG_VERSION::$D_TAG_VERSION";
|
||||
exit 0;
|
||||
echo "::set-output name=D_TAG_RESULT::pass";
|
||||
fi
|
||||
- name: Create Tag
|
||||
if: steps.s1.conclusion == 'success'
|
||||
if: steps.s1.outputs.D_TAG_RESULT == 'pass'
|
||||
uses: actions/github-script@v3
|
||||
with:
|
||||
github-token: ${{ github.token }}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue