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 ce300a6 commit ddd19f5Copy full SHA for ddd19f5
.github/workflows/release.yml
@@ -33,6 +33,12 @@ jobs:
33
- name: Checkout repository
34
uses: actions/checkout@v2
35
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
+
42
- name: Build Docker image
43
run: docker build --no-cache -f ./linux/Dockerfile -t pyinstaller-linux .
44
@@ -85,7 +91,7 @@ jobs:
85
91
with:
86
92
name: minecraft-mods-localizer-linux
87
93
path: ./linux/dist/minecraft-mods-localizer-linux-${{ github.ref_name }}
88
-
94
89
95
create-release:
90
96
needs:
97
- build-linux
src/init.py
@@ -12,4 +12,4 @@
12
13
USER = 'Y-RyuZU'
14
REPO = 'MinecraftModsLocalizer'
15
-VERSION = 'v2.1.1'
+VERSION = 'v2.1.2'
0 commit comments