File tree 3 files changed +5
-1
lines changed
3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 20
20
21
21
- name : Configure build environment
22
22
run : |
23
+ brew install jq
23
24
echo git_ref_name="$(git describe --always)" >> $GITHUB_ENV
24
25
25
26
- name : Build Squirrel
Original file line number Diff line number Diff line change 27
27
- name : Lint
28
28
run : swiftlint
29
29
30
+ - name : Configure build environment
31
+ run : brew install jq
32
+
30
33
- name : Build Squirrel
31
34
run : ./action-build.sh archive
32
35
Original file line number Diff line number Diff line change 3
3
set -e
4
4
5
5
rime_version=latest
6
- rime_git_hash=24f0f7b
6
+ rime_git_hash=` curl https://api.github.com/repos/rime/librime/releases/tags/latest | jq ' .assets | .[] | select(.name | contains("macOS")) | .name ' | jq -s ' .[0] ' -r | cut -d- -f2 `
7
7
sparkle_version=2.6.2
8
8
9
9
rime_archive=" rime-${rime_git_hash} -macOS-universal.tar.bz2"
You can’t perform that action at this time.
0 commit comments