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

This commit is contained in:
Space-Banane
2026-02-17 16:58:36 +01:00
parent 7b2c6affe1
commit d4fb8a054b
2 changed files with 2 additions and 3 deletions

View File

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

View File

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