Merge pull request #23 from Oliver-Akins/fix/missing-icon

Make the drag handle icon for the Attribute Manager actually show up
This commit is contained in:
Oliver 2025-07-25 22:15:48 -06:00 committed by GitHub
commit a8506be4ef
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -42,7 +42,7 @@ jobs:
run: cat system.temp.json | jq -r --tab '.download = "https://github.com/${{ github.repository }}/releases/download/v${{ steps.version.outputs.version }}/release.zip"' > system.json
- name: Create the zip
run: zip -r release.zip langs module styles templates system.json README.md
run: zip -r release.zip langs module styles templates system.json README.md assets
- name: Create the draft release
uses: ncipollo/release-action@v1
@ -50,5 +50,6 @@ jobs:
tag: "v${{ steps.version.outputs.version }}"
commit: ${{ github.ref }}
draft: true
body: <img aria-hidden="true" src="https://img.shields.io/github/downloads/${{ github.repository }}/v${{ steps.version.outputs.version }}/release.zip?style=flat-square&color=%2300aa00">
generateReleaseNotes: true
artifacts: "release.zip,system.json"