version_name_generator/.forgejo/workflows/build-and-release.yml

33 lines
988 B
YAML
Raw Normal View History

2023-12-16 17:59:07 -06:00
name: Build and Publish Rust Binary
2023-12-16 18:10:06 -06:00
on: [push]
2023-12-16 14:29:06 -06:00
jobs:
2023-12-16 17:59:07 -06:00
build:
2023-12-16 17:59:56 -06:00
runs-on: docker
2023-12-16 14:29:06 -06:00
steps:
2023-12-16 19:57:41 -06:00
- name: Set up Rust
uses: msrd0/rust-toolchain@nightly
2023-12-16 17:59:07 -06:00
- name: Check out code
2023-12-16 18:28:36 -06:00
uses: actions/checkout@v4
2023-12-16 17:59:07 -06:00
- name: Build binary
run: cargo build --release
2023-12-17 12:21:53 -06:00
- name: Publish
2023-12-16 20:19:02 -06:00
if: startsWith(github.ref, 'refs/tags/')
2023-12-17 12:24:06 -06:00
run: |
wget https://git.privacyquest.net/musselman/action_config_files/raw/branch/main/config.toml
cargo publish
2023-12-17 12:21:53 -06:00
#- uses: actions/upload-artifact@v3
#with:
#name: version_name_generator
#path: ./target/release/version_name_generator
#- uses: actions/download-artifact@v3
#with:
#name: version_name_generator
# - name: Publish binary
#uses: earl-warren/action-gh-release@v1
#if: startsWith(github.ref, 'refs/tags/')
#with:
#fail_on_unmatched_files: true
#files: |
#version_name_generator
2023-12-16 21:08:06 -06:00