Skip to content

fix(ci): Fix CI release workflow (#25) #2

fix(ci): Fix CI release workflow (#25)

fix(ci): Fix CI release workflow (#25) #2

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
- name: Upload
uses: ncipollo/release-action@v1
with:
token: ${{ secrets.SPIDER_CRAB_TOKEN }}
artifacts: target/release/spider-crab
tag: ${{ github.ref }}
allowUpdates: false