Skip to content

Commit 6b96dc4

Browse files
committed
Bumped version number to v0.12.0
1 parent 0f3fb96 commit 6b96dc4

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

.github/workflows/release.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff 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

common/.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.11.2
1+
v0.12.0

0 commit comments

Comments
 (0)