From 3f3450c027174857b04d8868242dcd66fb828fd6 Mon Sep 17 00:00:00 2001 From: "D.L." <140229250+deutschich@users.noreply.github.com> Date: Wed, 14 Jan 2026 19:25:49 +0100 Subject: [PATCH 1/2] Refactor GitHub Actions for pre-release management Removed cleanup of old pre-releases and updated GitHub pre-release step to allow updates and replace assets. --- .github/workflows/build_preview.yml | 22 ++++++---------------- 1 file changed, 6 insertions(+), 16 deletions(-) diff --git a/.github/workflows/build_preview.yml b/.github/workflows/build_preview.yml index 165cc47..70a40d6 100644 --- a/.github/workflows/build_preview.yml +++ b/.github/workflows/build_preview.yml @@ -24,6 +24,7 @@ jobs: run: | VERSION=$(cat version.txt | tr -d '\n') PREVIEW_VERSION="${VERSION}-preview" + echo "version=$VERSION" >> $GITHUB_OUTPUT echo "preview_version=$PREVIEW_VERSION" >> $GITHUB_OUTPUT @@ -35,27 +36,16 @@ jobs: cd .. cp CheapDesign-${{ steps.version.outputs.preview_version }}.zip CheapMC-${{ steps.version.outputs.preview_version }}.zip - # -------- DELETE OLD PRE-RELEASES (KEEP 5) -------- - - name: Cleanup old pre-releases - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - gh release list --limit 100 \ - --json tagName,isPrerelease,createdAt \ - --jq '.[] | select(.isPrerelease==true) | .tagName' \ - | tail -n +6 \ - | while read tag; do - echo "Deleting old pre-release: $tag" - gh release delete "$tag" -y - done - - # -------- GITHUB PRE-RELEASE -------- - - name: Create GitHub Pre-Release + # -------- GITHUB PRE-RELEASE (OVERWRITE) -------- + - name: Create or update GitHub Pre-Release uses: softprops/action-gh-release@v2 with: tag_name: ${{ steps.version.outputs.preview_version }} name: CheapDesign ${{ steps.version.outputs.preview_version }} prerelease: true + allowUpdates: true + replace_assets: true + files: | CheapDesign-${{ steps.version.outputs.preview_version }}.zip CheapMC-${{ steps.version.outputs.preview_version }}.zip From 9a74c390f9ebe29fa78b605802070f748a2521a7 Mon Sep 17 00:00:00 2001 From: "D.L." <140229250+deutschich@users.noreply.github.com> Date: Thu, 15 Jan 2026 13:07:43 +0100 Subject: [PATCH 2/2] Add authorship information to README Added authorship section to clarify texture creation. --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 1ceda9b..290e18b 100644 --- a/README.md +++ b/README.md @@ -42,3 +42,8 @@ Under the following conditions: * **Texture Style:** Cheap / low-quality inspired * **Creation Method:** Hand-pixelled * **License:** CC BY-SA 4.0 + +## Authorship + +All textures in this repository were created from scratch by +**deutschich** aka. **User404_** (2026). No original Minecraft or third-party assets were used.