From 3294a2ef7758e3a7ec47d4363998945aaba8de5c Mon Sep 17 00:00:00 2001 From: Mark Rapson Date: Mon, 10 Aug 2026 23:47:11 +0100 Subject: [PATCH] Zip resourcepack contents from its directory --- .gitea/workflows/package-resourcepack.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/package-resourcepack.yml b/.gitea/workflows/package-resourcepack.yml index 0c3bea6..ecf4b9f 100644 --- a/.gitea/workflows/package-resourcepack.yml +++ b/.gitea/workflows/package-resourcepack.yml @@ -18,8 +18,9 @@ jobs: python-version: "3.11" - name: Package resourcepack and create release + working-directory: resourcepack env: RELEASE_TOKEN: ${{ secrets.RELEASE_TOKEN }} GITEA_SERVER_URL: ${{ github.server_url }} GITEA_REPOSITORY: ${{ github.repository }} - run: python build/scripts/publish_resourcepack_release.py --resourcepack-root resourcepack --archive-path build/resourcepack.zip --tag ${{ github.ref_name }} \ No newline at end of file + run: python ../build/scripts/publish_resourcepack_release.py --resourcepack-root . --archive-path ../build/resourcepack.zip --tag ${{ github.ref_name }} \ No newline at end of file