diff --git a/azure-pipelines.yml b/azure-pipelines.yml index c89a73a..c7e377f 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -14,8 +14,9 @@ jobs: - script: | sudo apt -y update sudo apt install -y libxtst-dev libx11-dev libxdo3 libxdo-dev + displayName: Install library dependencies - template: ci/test.yml - - script: ci/build-linux.yml + - template: ci/build-linux.yml # - template: ci/deploy.yml # - job: macOS diff --git a/ci/build-linux.yml b/ci/build-linux.yml index d142488..fab9ecd 100644 --- a/ci/build-linux.yml +++ b/ci/build-linux.yml @@ -4,4 +4,6 @@ steps: VER=$(cat Cargo.toml| grep version -m 1 | awk -F '"' '{ print $2 }') cd target/release/ tar czf "espanso-linux-$VER.tar.gz" espanso - displayName: Cargo build and packaging \ No newline at end of file + cd ../.. + cp target/release/espanso-linux-*.gz . + displayName: "Cargo build and packaging" \ No newline at end of file