From 9ad4a8a69ad6c0001ce2b79132a30e01919c3a18 Mon Sep 17 00:00:00 2001 From: Sandy Carter Date: Sun, 11 Jun 2023 04:19:43 -0400 Subject: [PATCH] Compress repo folder --- .github/workflows/release.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3d624ff..9d6f0aa 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -114,13 +114,17 @@ jobs: with: type: 'zip' filename: 'release.${{ needs.version.outputs.tag }}.zip' - exclusions: '*.git* .cmake-format.py release* install/*' + directory: '..' + path: 'bgfx.cmake' + exclusions: '.git* .cmake-format.py .editorconfig install' - name: Create Source Tar uses: thedoctor0/zip-release@0.7.1 with: type: 'tar' filename: 'release.${{ needs.version.outputs.tag }}.tar.gz' - exclusions: '.git/ .gitmodules .gitignore .cmake-format.py .github/ install/ release.${{ needs.version.outputs.tag }}.tar.gz' + directory: '..' + path: 'bgfx.cmake' + exclusions: '.git* .cmake-format.py .editorconfig install' - name: Create Windows Zip uses: thedoctor0/zip-release@0.7.1 with: