Skip to content

Checkout with submodules. #3

Checkout with submodules.

Checkout with submodules. #3

Workflow file for this run

name: Rust Build and Release
on:
push:
branches:
- feature/ci_build
jobs:
build_and_release:
runs-on: ubuntu-latest
steps:

Check failure on line 11 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yml

Invalid workflow file

You have an error in your yaml syntax on line 11
- name: Checkout code
uses: actions/checkout@v2
with:
submodules: recursive
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
# Build cli folder
- name: Build CLI without flashloan
run: |
cd cli
cargo build --release
mv target/release/cli ../cli_without_flashloan
- name: Modify Cargo.toml and Build CLI with flashloan
run: |
sed -i 's/"cmp"/"cmp","flashloan_v2"/g' Cargo.toml
cargo build --release
mv target/release/cli ../cli_with_flashloan
- name: Zip the binaries
run: |
zip cli.zip cli_without_flashloan cli_with_flashloan
- name: Create Release
id: create_release
uses: actions/create-release@v1
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
- name: Upload zip to Release
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./cli.zip
asset_name: cli.zip
asset_content_type: application/zip