diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4d050a36..0f720718 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,7 +10,7 @@ jobs: name: Build strategy: matrix: - os: [ubuntu-latest, windows-latest, macos-latest] + os: [ubuntu-latest, windows-2019, macos-latest] runs-on: ${{ matrix.os }} steps: @@ -50,9 +50,9 @@ jobs: args: --release -p flo-worker - name: Archive + if: ${{ runner.os == 'Linux' || runner.os == 'macOS' }} uses: thedoctor0/zip-release@master with: - if: ${{ runner.os == 'Linux' || runner.os == 'macOS' }} type: 'zip' filename: ${{ steps.vars.outputs.release_file_name }} directory: target/release @@ -84,6 +84,6 @@ jobs: prerelease: true automatic_release_tag: ${{ steps.branch-name.outputs.tag }} files: | - flo-windows-latest/*.zip + flo-windows-2019/*.zip flo-macos-latest/*.zip flo-ubuntu-latest/*.zip diff --git a/Cargo.lock b/Cargo.lock index 9d654f27..c1fbef8b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1481,7 +1481,7 @@ dependencies = [ [[package]] name = "flo-client" -version = "0.12.0" +version = "0.13.0" dependencies = [ "anyhow", "async-tungstenite", @@ -2017,7 +2017,7 @@ dependencies = [ [[package]] name = "flo-worker" -version = "0.12.0" +version = "0.13.0" dependencies = [ "anyhow", "embed-resource", diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 490d0fa8..323728af 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -9,10 +9,6 @@ jobs: - script: | curl https://sh.rustup.rs/ -sSf | sh -s -- --default-toolchain stable -y displayName: 'install rust' - - - script: | - cargo check --all - displayName: 'check' # - script: | # cargo build -p flo-controller-service --release diff --git a/binaries/flo-worker/Cargo.toml b/binaries/flo-worker/Cargo.toml index b1afaa0a..7db56ba9 100644 --- a/binaries/flo-worker/Cargo.toml +++ b/binaries/flo-worker/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "flo-worker" -version = "0.12.0" +version = "0.13.0" authors = ["Flux Xu "] edition = "2018" diff --git a/crates/client/Cargo.toml b/crates/client/Cargo.toml index f1b034f5..f37ce028 100644 --- a/crates/client/Cargo.toml +++ b/crates/client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "flo-client" -version = "0.12.0" +version = "0.13.0" authors = ["Flux Xu "] edition = "2018"