fix: update artifact upload path to only include zip files in dist directory
All checks were successful
CI / build-and-publish (push) Successful in 9s

This commit is contained in:
Space-Banane
2026-02-17 17:00:11 +01:00
parent d4fb8a054b
commit 24a18e8f8e
2 changed files with 2 additions and 2 deletions

View File

@@ -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')

View File

@@ -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'