File tree Expand file tree Collapse file tree 2 files changed +12
-7
lines changed
Expand file tree Collapse file tree 2 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -121,16 +121,21 @@ jobs:
121121 # shell: bash
122122
123123 # Generate icons for Linux and macOS
124- - name : Generate icons
124+ - name : Load cached icons
125125 if : runner.os == 'Linux' || runner.os == 'macOS'
126+ id : cache-icons
127+ uses : actions/cache@v4
128+ with :
129+ key : ${{ runner.os }}-icons-${{ hashFiles('images/icon-large.png') }}
130+ path : |
131+ build/share/icons
132+ build/share/pixmaps
133+
134+ - name : Generate icons
135+ if : (runner.os == 'Linux' || runner.os == 'macOS') && steps.cache-icons.outputs.cache-hit != 'true'
126136 working-directory : ${{ env.WORKING_DIRECTORY }}
127137 run : bash ./generate-icons.sh
128138 shell : bash
129- cache :
130- key : ${{ runner.os }}-icons-${{ hashFiles('images/icon-large.png') }}
131- paths :
132- - build/share/icons
133- - build/share/pixmaps
134139
135140 # Package as .deb for Ubuntu
136141 - name : Package as .deb for Ubuntu
Original file line number Diff line number Diff line change 1- v0.11.2
1+ v0.12.0
You can’t perform that action at this time.
0 commit comments