From e2b9dc1282897b7499be18f75bb03a1a5fad0fee Mon Sep 17 00:00:00 2001 From: Joshua Date: Mon, 30 Dec 2024 02:11:52 +0100 Subject: [PATCH] fix: Add option to ignore system and hidden files in devbuild.yml and adjust file paths for zipping --- .github/workflows/devbuild.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/devbuild.yml b/.github/workflows/devbuild.yml index ab2927a..70fe20d 100644 --- a/.github/workflows/devbuild.yml +++ b/.github/workflows/devbuild.yml @@ -49,6 +49,7 @@ jobs: options: | pack_directory = '.' output_file_path = '/tmp/pack.zip' + ignore_system_and_hidden_files = false # - name: 📦 ZIP # uses: vimtor/action-zip@v1 @@ -78,10 +79,14 @@ jobs: with: name: JqshuvPack-${{ matrix.version }}.X path: temp-${{ matrix.version }} + + - name: List Files + run: ls -R temp-${{ matrix.version }} + - name: 📦 ZIP uses: vimtor/action-zip@v1 with: - files: temp-${{ matrix.version }}/* + files: temp-${{ matrix.version }}/pack/* dest: JqshuvPack2-${{ matrix.version }}.X.zip #- name: 🏹 Upload # uses: actions/upload-artifact@v4