Test github actions type workflow
This commit is contained in:
parent
30e9ee70b4
commit
745a6a221e
1 changed files with 0 additions and 8 deletions
|
@ -1,30 +1,22 @@
|
|||
name: Build and Publish Rust Binary
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- '*'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: docker
|
||||
|
||||
steps:
|
||||
- name: Set up Rust
|
||||
uses: actions/setup-rust@v1
|
||||
with:
|
||||
rust-version: stable
|
||||
|
||||
- name: Check out code
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Build binary
|
||||
run: cargo build --release
|
||||
|
||||
- name: Publish binary
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: version_name_generator
|
||||
path: ./target/release/version_name_generator
|
||||
|
||||
|
|
Loading…
Reference in a new issue