From 8083c6c652822ba74d4c553aeaf23b28e8d25d94 Mon Sep 17 00:00:00 2001 From: eyedeekay Date: Thu, 7 Mar 2024 13:40:26 -0500 Subject: [PATCH] skip unpacking artifacts, only checkout changelog --- .github/workflows/release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f92c2b9..27deb16 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,6 +15,10 @@ jobs: contents: write steps: - uses: actions/checkout@v4 + with: + sparse-checkout: | + CHANGES.md + sparse-checkout-cone-mode: false - name: Download artifacts id: download-artifact uses: dawidd6/action-download-artifact@v3 @@ -26,5 +30,6 @@ jobs: - name: Upload artifacts uses: ncipollo/release-action@v1 with: + skip_unpack: true artifacts: "*" bodyFile: "CHANGES.md"