Skip to content

Commit

Permalink
Revert cd.yml
Browse files Browse the repository at this point in the history
Revert to known-good December 2020 config, except for the improved tag syntax
  • Loading branch information
alexjago authored Oct 12, 2021
1 parent 2e7c321 commit d4a2377
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down Expand Up @@ -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 }}
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit d4a2377

Please sign in to comment.