From 01642f2c6aba08e51286ae683d6ef4f155036d0e Mon Sep 17 00:00:00 2001 From: Joel Wachsler Date: Sun, 10 Jul 2022 21:26:33 +0000 Subject: [PATCH] Maybe this works --- .github/workflows/publish.yml | 6 +++--- Cargo.lock | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 55caae5..510c784 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -22,8 +22,8 @@ jobs: git config --local user.email "github-actions[bot]@users.noreply.github.com" git config --local user.name "github-actions[bot]" git tag "v${{ steps.determine-version.outputs.version }}" -a -m "Create new release" - SHOULD_PUBLISH="true" - git push origin "v${{ steps.determine-version.outputs.version }}" || SHOULD_PUBLISH="false" + SHOULD_PUBLISH='true' + git push origin "v${{ steps.determine-version.outputs.version }}" || SHOULD_PUBLISH='false' echo "::set-output name=should_publish::$SHOULD_PUBLISH" - name: Result @@ -33,7 +33,7 @@ jobs: publish: runs-on: ubuntu-22.04 needs: tag - if: ${{ needs.tag.outputs.should_publish == true }} + if: ${{ needs.tag.outputs.should_publish == 'true' }} steps: - uses: actions/checkout@v2 diff --git a/Cargo.lock b/Cargo.lock index c567795..7437780 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -545,7 +545,7 @@ dependencies = [ [[package]] name = "qbittorrent-web-api" -version = "0.2.1" +version = "0.2.6" dependencies = [ "qbittorrent-web-api-gen", "reqwest", @@ -557,7 +557,7 @@ dependencies = [ [[package]] name = "qbittorrent-web-api-gen" -version = "0.1.0" +version = "0.2.6" dependencies = [ "anyhow", "case",