From 016f71ece767a1d6f18cc0473dc9d4e85743c481 Mon Sep 17 00:00:00 2001 From: Matthias Pfeil Date: Wed, 4 Jan 2023 11:13:20 +0100 Subject: [PATCH] Exclude specific paths in artifacts upload --- .github/workflows/publish.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 521affa..8853346 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -29,7 +29,9 @@ jobs: uses: actions/upload-artifact@v2 with: name: lanuv-parser - path: . + path: | + !.github/ + !node_modules/ - name: Release new version run: | npm version ${{ github.event.release.tag_name }} --no-git-tag-version --no-commit-hooks