fix: Error CI name (#2)
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 962bd9f..068e364 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml
@@ -41,3 +41,16 @@ for file in $(find . -name "*.md"); do markdown-link-check -c .dlc.json -q "$file" done + result: + name: CI + runs-on: ubuntu-latest + needs: [license, dead-link] + if: always() + steps: + - name: Status + run: | + if [[ ${{ needs.license.result }} != 'success' || ${{ needs.dead-link.result }} != 'success' ]]; then + echo "Build Failed!" + exit -1 + fi +