We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2be0b44 commit fafb050Copy full SHA for fafb050
.github/workflows/update-dumps.yml
@@ -371,11 +371,15 @@ jobs:
371
mkdir -p cache/output
372
java -cp staging/cache-*-SNAPSHOT-jar-with-dependencies.jar net.runelite.cache.SimbaSpriteDumper \
373
--cachedir cache/input --cachename ${{ inputs.cache_version }} --outputdir cache/output
374
- - name: Upload Object Info
+ - name: Zip sprites folder
375
+ run: |
376
+ cd cache/output/${{ inputs.cache_version }}/Sprites
377
+ zip -r sprites.zip .
378
+ - name: Upload Sprites
379
uses: actions/upload-artifact@v4
380
with:
381
name: sprites
- path: cache/output/${{ inputs.cache_version }}
382
+ path: cache/output/${{ inputs.cache_version }}/Sprites/sprites.zip
383
384
commit-results:
385
runs-on: ubuntu-latest
0 commit comments