Skip to content

Commit

Permalink
fix: Add option to ignore system and hidden files in devbuild.yml and…
Browse files Browse the repository at this point in the history
… adjust file paths for zipping
  • Loading branch information
jqshuv committed Dec 30, 2024
1 parent 484220f commit e2b9dc1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/devbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit e2b9dc1

Please sign in to comment.