From 84982d61311ada39ab7138e7f6b8896470cfdd32 Mon Sep 17 00:00:00 2001 From: Rostislav Raykov Date: Wed, 18 Sep 2019 14:31:12 +0200 Subject: [PATCH] fix: Wrong option name for cargo github action https://github.com/actions-rs/cargo/issues/4 --- .github/workflows/build.yml | 2 +- .github/workflows/publish.yml | 2 +- .github/workflows/release.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7703e7b..3081343 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,4 +19,4 @@ jobs: with: toolchain: nightly command: build - arguments: --release \ No newline at end of file + args: --release \ No newline at end of file diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 4de5319..8a199d9 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -22,7 +22,7 @@ jobs: with: toolchain: nightly command: login - arguments: ${{ secrets.CRATES_TOKEN }} + args: ${{ secrets.CRATES_TOKEN }} - name: Publish to crates.io uses: actions-rs/cargo@v1 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8cba8e0..0195195 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,7 +21,7 @@ jobs: with: toolchain: nightly command: build - arguments: --release + args: --release - name: Get the version run: echo ::set-env name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3) - name: Archive