Skip to content

Commit

Permalink
Merge pull request #24
Browse files Browse the repository at this point in the history
fix: VCRUNTIME140_1.dll is missing
  • Loading branch information
Songtronix authored Feb 6, 2020
2 parents 0a452f0 + 63b7c87 commit 174aea1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ jobs:
# Build & Package airshipper
- name: Install cargo-wix
run: cargo install cargo-wix
- name: Enable static CRT linkage
run: |
mkdir .cargo
echo '[target.x86_64-pc-windows-msvc]' >> .cargo/config
echo 'rustflags = ["-Ctarget-feature=+crt-static"]' >> .cargo/config
- name: Build
run: cargo build --bin airshipper --release
- name: MSI Installer
Expand Down
2 changes: 1 addition & 1 deletion client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "airshipper"
description = "Provides automatic updates for the voxel RPG Veloren."
version = "0.2.0"
version = "0.2.1"
authors = ["Songtronix <[email protected]>"]
edition = "2018"
publish = false
Expand Down

0 comments on commit 174aea1

Please sign in to comment.