fix: correct coverage and lint paths in CI workflow
Some checks failed
CI / test (push) Failing after 10s
CI / build (push) Has been skipped

This commit is contained in:
2026-01-30 20:37:50 +00:00
parent 2bb620b56f
commit 60c3e1691b

View File

@@ -55,25 +55,3 @@ jobs:
with: with:
name: dist name: dist
path: dist/ path: dist/
release:
needs: build
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: dist
path: dist/
- name: Create Release
uses: https://gitea.com/actions/release-action@main
with:
files: |
dist/**
draft: false
prerelease: false
version: ${GITHUB_REF#refs/tags/v}