From ce29a85d6137c5224e8105772c7cd190767060c5 Mon Sep 17 00:00:00 2001 From: redglow Date: Mon, 22 Jun 2026 08:49:26 +0200 Subject: [PATCH] ci: missing "with" for upload artifact --- .gitea/workflows/cicd.yaml | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/.gitea/workflows/cicd.yaml b/.gitea/workflows/cicd.yaml index 238a09a..8d37a83 100644 --- a/.gitea/workflows/cicd.yaml +++ b/.gitea/workflows/cicd.yaml @@ -26,13 +26,14 @@ jobs: run: rm -rf node_modules && yarn install --production=true - name: Publish artifacts uses: actions/upload-artifact@v7 - path: | - dist - index.html - node_modules - package.json - public - src - tsconfig.json - vite.config.json - yarn.lock \ No newline at end of file + with: + path: | + dist + index.html + node_modules + package.json + public + src + tsconfig.json + vite.config.json + yarn.lock \ No newline at end of file