From 42273bf50f2e7e118bef9413fe27c50defc05e0b Mon Sep 17 00:00:00 2001 From: Ly-sec Date: Mon, 25 Aug 2025 08:29:54 +0200 Subject: [PATCH] Edit workflow (release.yml) --- .github/workflows/release.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9da02399..c510e62f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,7 +22,14 @@ jobs: - name: Create release archive run: | mkdir -p ../noctalia-release - rsync -av --exclude='.git' --exclude='.github' ./ ../noctalia-release/ + rsync -av \ + --exclude='.git' \ + --exclude='.github' \ + --exclude='nix' \ + --exclude='flake.nix' \ + --exclude='flake.lock' \ + --exclude='result*' \ + ./ ../noctalia-release/ cd .. tar -czf noctalia-${{ github.ref_name }}.tar.gz noctalia-release/ cp noctalia-${{ github.ref_name }}.tar.gz noctalia-latest.tar.gz @@ -58,4 +65,4 @@ jobs: noctalia-latest.tar.gz body_path: release_notes.md env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}