Finishing touches #9
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: Release for Linux glibc amd64 | |
on: | |
push: | |
tags: | |
- '*' | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
publish_for_linux_glibc_amd64: | |
name: Release for Linux glibc amd64 | |
runs-on: ubuntu-latest | |
container: fedora:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Compile | |
run: | | |
whoami | |
dnf group install -y "C Development Tools and Libraries" "Development Tools" | |
dnf in -y curl openssl-devel | |
curl https://sh.rustup.rs -sSf | sh -s -- -y | |
. $HOME/.cargo/env | |
cargo install cargo-auditable cargo-audit | |
rustc --version | |
cargo auditable build --release --locked | |
cd target/release | |
mv hctl hctl-linux-glibc-amd64 | |
sha256sum hctl-linux-glibc-amd64 > sha256-hctl-linux-glibc-amd64 | |
- name: Upload binaries to release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: target/release/hctl-linux-glibc-amd64 | |
asset_name: hctl-linux-glibc-amd64 | |
tag: ${{ github.ref }} | |
- name: Upload checksum to release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: target/release/sha256-hctl-linux-glibc-amd64 | |
asset_name: sha256-hctl-linux-glibc-amd64 | |
tag: ${{ github.ref }} |