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" ];
|
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 }}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue