From acd37ff40ef48244b76a2027765afb65ae7ae7bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20Garc=C3=ADa-Dom=C3=ADnguez?= Date: Tue, 5 Nov 2024 13:21:44 +0000 Subject: [PATCH] CI: tweak zipped update site for convenience Eclipse expects the zipped update site to have its contents directly at the root level, without a root folder. --- .github/workflows/dist.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dist.yml b/.github/workflows/dist.yml index 15d57ca..7b139f6 100644 --- a/.github/workflows/dist.yml +++ b/.github/workflows/dist.yml @@ -57,8 +57,8 @@ jobs: - name: Create Zipped Update Site shell: bash run: | - cd _site - zip -r updates.zip updates/ + cd _site/updates + zip -r ../updates.zip . - name: Upload Github Pages Artifact uses: actions/upload-pages-artifact@v3 - name: Deploy to GitHub Pages