From 37045b04f0eb0310fedce37a4cc8f1af8a18c5a8 Mon Sep 17 00:00:00 2001 From: "John D. Fisher" Date: Sat, 16 Nov 2024 14:27:15 -0800 Subject: [PATCH] build(github): add tar release --- .github/workflows/release.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index dcd93ba..128c9e4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,10 +13,15 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@master - - name: Archive Release + - name: Archive Release Zip uses: thedoctor0/zip-release@0.7.5 with: type: 'zip' filename: 'release.zip' path: 'ctags.d' - exclusions: '*.git* /*node_modules/* .editorconfig' + - name: Archive Release Tar + uses: thedoctor0/zip-release@0.7.5 + with: + type: 'tar' + filename: 'release.tar' + path: 'ctags.d'