From 59f6c8fdd4729f2181c560fde8871b309e9c7755 Mon Sep 17 00:00:00 2001 From: Arne Beer Date: Wed, 10 Feb 2021 02:08:31 +0100 Subject: [PATCH] Fix weird duplicate upload github action bug for arm release --- .github/workflows/package-binary.yml | 2 ++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/package-binary.yml b/.github/workflows/package-binary.yml index 88a2a03d..b5e636fc 100644 --- a/.github/workflows/package-binary.yml +++ b/.github/workflows/package-binary.yml @@ -113,6 +113,7 @@ jobs: file: ${{ matrix.client_artifact_name }} asset_name: ${{ matrix.client_release_name }} tag: ${{ github.ref }} + overwrite: true - name: Upload daemon binaries to release uses: svenstaro/upload-release-action@v2 @@ -121,6 +122,7 @@ jobs: file: ${{ matrix.daemon_artifact_name }} asset_name: ${{ matrix.daemon_release_name }} tag: ${{ github.ref }} + overwrite: true - uses: svenstaro/upload-release-action@v2 with: diff --git a/Cargo.lock b/Cargo.lock index 488ca202..c033de1c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1153,7 +1153,7 @@ dependencies = [ [[package]] name = "pueue" -version = "0.12.1-alpha.0" +version = "0.12.0" dependencies = [ "anyhow", "async-std", diff --git a/Cargo.toml b/Cargo.toml index 66e75d8d..d6a3b7c5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pueue" description = "A cli tool for managing long running shell commands." -version = "0.12.1-alpha.0" +version = "0.12.0" authors = ["Arne Beer "] homepage = "https://github.com/nukesor/pueue" repository = "https://github.com/nukesor/pueue"