Skip to content

Commit ddd19f5

Browse files
committed
fix: macosはDockerをinstallしないといけないらしい。
1 parent ce300a6 commit ddd19f5

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,12 @@ jobs:
3333
- name: Checkout repository
3434
uses: actions/checkout@v2
3535

36+
- name: Install Docker on macOS
37+
run: |
38+
brew install --cask docker
39+
open /Applications/Docker.app
40+
while ! docker system info > /dev/null 2>&1; do sleep 1; done
41+
3642
- name: Build Docker image
3743
run: docker build --no-cache -f ./linux/Dockerfile -t pyinstaller-linux .
3844

@@ -85,7 +91,7 @@ jobs:
8591
with:
8692
name: minecraft-mods-localizer-linux
8793
path: ./linux/dist/minecraft-mods-localizer-linux-${{ github.ref_name }}
88-
94+
8995
create-release:
9096
needs:
9197
- build-linux

src/init.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212

1313
USER = 'Y-RyuZU'
1414
REPO = 'MinecraftModsLocalizer'
15-
VERSION = 'v2.1.1'
15+
VERSION = 'v2.1.2'

0 commit comments

Comments
 (0)