From 24a18e8f8eb54f840eb8512dc1071b1affcc86bb Mon Sep 17 00:00:00 2001 From: Space-Banane Date: Tue, 17 Feb 2026 17:00:11 +0100 Subject: [PATCH] fix: update artifact upload path to only include zip files in dist directory --- .gitea/workflows/ci.yml | 2 +- .gitea/workflows/dev.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index dafc899..2325f8a 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -53,7 +53,7 @@ jobs: uses: actions/upload-artifact@v3 with: name: web-ext-build - path: dist/** + path: dist/*.zip - 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 f3cae7d..f8414c1 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/*.zip - name: Push changes if: github.event_name == 'push'