Skip to content

ci: Release naming (#30) #6

ci: Release naming (#30)

ci: Release naming (#30) #6

Workflow file for this run

name: Release
on:
push:
tags:
- '*.*.*'
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
environment: Release
env:
RUSTFLAGS: "-Dwarnings"
steps:
- uses: actions/checkout@v3
- name: Build
run: |
cargo build --release --locked
mv target/release/spider-crab target/release/spider-crab-linux-amd64
- name: Upload
uses: ncipollo/release-action@v1
with:
artifacts: target/release/spider-crab-linux-amd64
allowUpdates: false