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 2328809 commit f7018f6Copy full SHA for f7018f6
.github/workflows/mac-build.yml
@@ -17,14 +17,19 @@ jobs:
17
18
- name: Install Rust
19
run: rustup target add ${{ matrix.target }}
20
-
+
21
+ - name: Set environment variables
22
+ run: |
23
+ export LC_ALL=en_US.UTF-8
24
+ export LANG=en_US.UTF-8
25
26
- name: Compile
27
run: cargo build --release --target ${{ matrix.target }}
28
29
- name: Upload artifact
30
if: success()
31
uses: actions/upload-artifact@v3
32
with:
33
name: Binary-${{ matrix.target }}
34
path: |
- target/${{ matrix.target }}/release/Minecraft-server-auto-setup
35
+ target/${{ matrix.target }}/release/Minecraft-server-auto-setup
0 commit comments