From d4fb8a054b1cbbefcdcac236d60c35366a584f46 Mon Sep 17 00:00:00 2001 From: Space-Banane Date: Tue, 17 Feb 2026 16:58:36 +0100 Subject: [PATCH] fix: update artifact upload path to include all files in dist directory --- .gitea/workflows/ci.yml | 3 +-- .gitea/workflows/dev.yml | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 3cf98b4..dafc899 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -50,11 +50,10 @@ jobs: run: npx web-ext build -s . -a dist --overwrite-dest - name: Upload build artifact - # v4+ not supported on Gitea Actions/Forgejo, use v3 for compatibility uses: actions/upload-artifact@v3 with: name: web-ext-build - path: dist/ + path: dist/** - name: Publish to Mozilla Add-ons if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master') diff --git a/.gitea/workflows/dev.yml b/.gitea/workflows/dev.yml index 126f844..f3cae7d 100644 --- a/.gitea/workflows/dev.yml +++ b/.gitea/workflows/dev.yml @@ -29,7 +29,7 @@ jobs: uses: actions/upload-artifact@v3 with: name: web-ext-build - path: dist/ + path: dist/** - name: Push changes if: github.event_name == 'push'