Merge pull request #15 from michalszmidt/dev #22
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: archlinux:base-devel | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Compile | |
run: | | |
whoami | |
pacman -Suuy --noconfirm | |
pacman -Su openssl rustup curl --noconfirm | |
rustup default stable | |
cargo install cargo-auditable cargo-audit | |
uname -a | |
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 }} |