docs: fix typos
Found via `typos --format brief`
This commit is contained in:
@@ -40,28 +40,28 @@ jobs:
|
||||
# Build for linux x86_64
|
||||
- name: build release linux_x86_64
|
||||
run: cargo build --release
|
||||
# Compress ouput into tar
|
||||
# Compress output into tar
|
||||
- name: compress oxker_linux_x86_64 binary
|
||||
run: tar -C target/release -czf ./oxker_linux_x86_64.tar.gz oxker
|
||||
|
||||
# Build for linux aarch64, aka 64 bit pi 4
|
||||
- name: build aarch64-unknown-linux-musl
|
||||
run: cross build --target aarch64-unknown-linux-musl --release
|
||||
# Compress ouput into tar
|
||||
# Compress output into tar
|
||||
- name: compress aarch64 binary
|
||||
run: tar -C target/aarch64-unknown-linux-musl/release -czf ./oxker_linux_aarch64.tar.gz oxker
|
||||
|
||||
# Build for linux armv6, aka 32 bit pi zero w
|
||||
- name: build arm-unknown-linux-musleabihf
|
||||
run: cross build --target arm-unknown-linux-musleabihf --release
|
||||
# Compress ouput into tar
|
||||
# Compress output into tar
|
||||
- name: compress armv6 binary
|
||||
run: tar -C target/arm-unknown-linux-musleabihf/release -czf ./oxker_linux_armv6.tar.gz oxker
|
||||
|
||||
# Build for windows
|
||||
- name: build release windows_x86_64
|
||||
run: cross build --target x86_64-pc-windows-gnu --release
|
||||
# Compress ouput into zip
|
||||
# Compress output into zip
|
||||
- name: compress windows_x86_64 binary
|
||||
run: zip -j ./oxker_windows_x86_64.zip target/x86_64-pc-windows-gnu/release/oxker.exe
|
||||
|
||||
|
||||
Reference in New Issue
Block a user