Rename workflow-file
This commit is contained in:
parent
745a6a221e
commit
9e074a8eb3
1 changed files with 0 additions and 0 deletions
22
.forgejo/workflows/build-and-release.yml
Normal file
22
.forgejo/workflows/build-and-release.yml
Normal file
|
@ -0,0 +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…
Add table
Add a link
Reference in a new issue