feat: add input logging for unit conversion tool #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Release | |
permissions: | |
contents: write | |
on: | |
push: | |
tags: | |
- v* | |
env: | |
PROJECT_NAME: pim | |
jobs: | |
build: | |
runs-on: ${{ matrix.job.os }} | |
strategy: | |
matrix: | |
job: | |
- { | |
os: ubuntu-latest, | |
target: x86_64-unknown-linux-gnu, | |
use-cross: false, | |
extension: "", | |
} | |
- { | |
os: ubuntu-latest, | |
target: aarch64-unknown-linux-gnu, | |
use-cross: true, | |
extension: "", | |
} | |
- { | |
os: macos-latest, | |
target: x86_64-apple-darwin, | |
use-cross: false, | |
extension: "", | |
} | |
- { | |
os: macos-latest, | |
target: aarch64-apple-darwin, | |
use-cross: false, | |
extension: "", | |
} | |
- { | |
os: windows-latest, | |
target: x86_64-pc-windows-msvc, | |
use-cross: false, | |
extension: .exe, | |
} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Rust toolchain | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
target: ${{ matrix.job.target }} | |
- name: Build | |
uses: actions-rs/cargo@v1 | |
with: | |
use-cross: ${{ matrix.job.use-cross }} | |
command: build | |
args: --release --target ${{ matrix.job.target }} | |
- name: Rename artifacts | |
run: | | |
mv target/${{ matrix.job.target }}/release/${{ env.PROJECT_NAME }}${{ matrix.job.extension }} ${{ env.PROJECT_NAME }}-${{ github.ref_name }}-${{ matrix.job.target }}${{ matrix.job.extension }} | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
files: | | |
${{ env.PROJECT_NAME }}-${{ github.ref_name }}-${{ matrix.job.target }}${{ matrix.job.extension }} |