Added README in Russian + Prepare for v0.4.0 version

This commit is contained in:
Shiroyasha 2024-10-12 21:10:50 +03:00
parent c0bf550eb8
commit 7a4f3dc7a5
Signed by: shiroyashik
GPG key ID: E4953D3940D7860A
5 changed files with 132 additions and 24 deletions

View file

@ -38,18 +38,18 @@ jobs:
run: CROSS_NO_WARNINGS=0 cross build --target ${{ matrix.target }} --release
# Create necessary files and directories
- name: Create necessary files and directories
- name: Create necessary files
run: |
mkdir -p target/output/avatars
cp Config.example.toml target/output/Config.toml
# Compress the output
# Compress the output | Windows
- name: Compress | windows
if: matrix.target == 'x86_64-pc-windows-gnu'
run: |
cp target/${{ matrix.target }}/release/sculptor.exe target/output
(cd target/output; zip "../../sculptor_${{ matrix.output_name }}" ./*)
# Compress the output
# Compress the output | Linux
- name: Compress | linux
if: matrix.target != 'x86_64-pc-windows-gnu'
run: |