From d4a2377dea458e28028560c045022aebccea56e3 Mon Sep 17 00:00:00 2001 From: Alex Jago <4475543+alexjago@users.noreply.github.com> Date: Wed, 13 Oct 2021 09:39:28 +1000 Subject: [PATCH] Revert cd.yml Revert to known-good December 2020 config, except for the improved tag syntax --- .github/workflows/cd.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 773f8ce..d5ed86c 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -1,7 +1,6 @@ name: Continuous Deployment # slightly modified from https://github.com/rust-github/template -# simply doesn't have the cargo deployment on: push: @@ -47,8 +46,9 @@ jobs: binary-postfix: "" use-cross: true + steps: - - name: Install Rust toolchain + - name: Installing Rust toolchain uses: actions-rs/toolchain@v1 with: toolchain: ${{ matrix.rust }} @@ -76,7 +76,7 @@ jobs: run: | cd target/${{ matrix.job.target }}/release ####### reduce binary size by removing debug symbols ####### - BINARY_NAME=fluvial-${{ matrix.job.binary-postfix }} + BINARY_NAME=fluvial${{ matrix.job.binary-postfix }} if [[ ${{ matrix.job.target }} == aarch64-unknown-linux-gnu ]]; then GCC_PREFIX="aarch64-linux-gnu-" else