Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8f38d07385 | |||
| e437cecb48 | |||
| 2198c9f787 | |||
| bd67084b87 | |||
| ebdf1061cf | |||
| b755f4a603 | |||
| 5bdb44ffba | |||
| d320e286c1 | |||
| f8f6f7e3ef | |||
| 150ff05048 | |||
| 4f283ca983 | |||
| d7bdccfddb |
@@ -1,20 +0,0 @@
|
||||
name: publish
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
publish:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
id-token: write # Required for OIDC token exchange
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- name: check version
|
||||
# cut off the v part of the tag to only search for the number
|
||||
run: grep -q "$(echo "${{ github.ref_name }}" | cut -c2-)" Cargo.toml
|
||||
- uses: rust-lang/crates-io-auth-action@v1
|
||||
id: auth
|
||||
- run: cargo publish
|
||||
env:
|
||||
CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }}
|
||||
@@ -6,40 +6,79 @@ on:
|
||||
tags:
|
||||
- "v*"
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
jobs:
|
||||
release:
|
||||
runs-on: ${{ matrix.info.runs-on }}
|
||||
permissions:
|
||||
contents: write
|
||||
strategy:
|
||||
matrix:
|
||||
info:
|
||||
- os: "macOS"
|
||||
- os: "macOS-arm"
|
||||
runs-on: "macos-latest"
|
||||
package-extension: "tar.gz"
|
||||
executable-extension: ""
|
||||
- os: "linux-x86"
|
||||
- os: "macOS-intel"
|
||||
runs-on: "macos-26-intel"
|
||||
package-extension: "tar.gz"
|
||||
executable-extension: ""
|
||||
- os: "linux-x86_64"
|
||||
runs-on: "ubuntu-latest"
|
||||
package-extension: "tar.gz"
|
||||
executable-extension: ""
|
||||
- os: "linux-arm"
|
||||
runs-on: "ubuntu-24.04-arm"
|
||||
package-extension: "tar.gz"
|
||||
executable-extension: ""
|
||||
- os: "Windows"
|
||||
- os: "Windows-x86_64"
|
||||
runs-on: "windows-latest"
|
||||
package-extension: "zip"
|
||||
executable-extension: ".exe"
|
||||
- os: "Windows-arm"
|
||||
runs-on: "windows-11-arm"
|
||||
package-extension: "zip"
|
||||
executable-extension: ".exe"
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- name: checkout
|
||||
uses: actions/checkout@v6
|
||||
- name: check version
|
||||
# cut off the v part of the tag to only search for the number
|
||||
run: grep -q "$(echo "${{ github.ref_name }}" | cut -c2-)" Cargo.toml
|
||||
- run: cargo test --release
|
||||
- run: cargo build --release --locked
|
||||
- name: package
|
||||
# TODO: include completions/man page
|
||||
run: tar -azcf "hexapoda-${{ matrix.info.os }}-${{ github.ref_name }}.zip" -C "target/release/" "hexapoda${{ matrix.info.executable-extension }}"
|
||||
run: grep --quiet "$(echo "${{ github.ref_name }}" | cut -c2-)" Cargo.toml
|
||||
- name: test
|
||||
run: cargo test --release
|
||||
- name: make completion/manpage folders
|
||||
run: mkdir completions; mkdir manpage
|
||||
- name: build
|
||||
run: cargo build --release --locked
|
||||
env:
|
||||
HEXAPODA_COMPLETIONS: completions
|
||||
HEXAPODA_MANPAGE: manpage
|
||||
- name: package-tar-gz
|
||||
if: ${{ matrix.info.package-extension == 'tar.gz' }}
|
||||
run: tar --create --gzip --file "hexapoda-${{ matrix.info.os }}-${{ github.ref_name }}.tar.gz" "completions" "manpage" -C "target/release/" "hexapoda${{ matrix.info.executable-extension }}"
|
||||
- name: package-zip
|
||||
if: ${{ matrix.info.package-extension == 'zip' }}
|
||||
run: tar --create --auto-compress --file "hexapoda-${{ matrix.info.os }}-${{ github.ref_name }}.zip" "completions" "manpage" -C "target/release/" "hexapoda${{ matrix.info.executable-extension }}"
|
||||
- name: release
|
||||
uses: softprops/action-gh-release@v2
|
||||
with:
|
||||
draft: true
|
||||
name: "${{ github.ref_name }}"
|
||||
files: hexapoda-${{ matrix.info.os }}-${{ github.ref_name }}.zip
|
||||
files: "hexapoda-${{ matrix.info.os }}-${{ github.ref_name }}.${{ matrix.info.package-extension }}"
|
||||
|
||||
publish:
|
||||
runs-on: ubuntu-latest
|
||||
needs: release
|
||||
permissions:
|
||||
id-token: write # Required for OIDC token exchange
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- name: check version
|
||||
# cut off the v part of the tag to only search for the number
|
||||
# include the " = " to not match on main, only v* tags
|
||||
run: grep -q " = \"$(echo "${{ github.ref_name }}" | cut -c2-)\"" Cargo.toml
|
||||
- uses: rust-lang/crates-io-auth-action@v1
|
||||
id: auth
|
||||
- run: cargo publish
|
||||
env:
|
||||
CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }}
|
||||
|
||||
Generated
+1
-1
@@ -568,7 +568,7 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
||||
|
||||
[[package]]
|
||||
name = "hexapoda"
|
||||
version = "0.2.0"
|
||||
version = "0.2.2"
|
||||
dependencies = [
|
||||
"clap",
|
||||
"clap_complete",
|
||||
|
||||
+25
-1
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "hexapoda"
|
||||
# if run manually, CI will check for the string "ain" (lol), so here you go :)
|
||||
version = "0.2.0"
|
||||
version = "0.2.2"
|
||||
description = "a colorful modal hex editor"
|
||||
repository = "https://github.com/simonomi/hexapoda"
|
||||
keywords = ["cli", "tui", "hex", "tool", "editor"]
|
||||
@@ -23,3 +23,27 @@ clap = { version = "4.6.0", features = ["derive"] }
|
||||
clap_complete = "4.6.3"
|
||||
clap_complete_nushell = "4.6.0"
|
||||
clap_mangen = "0.3.0"
|
||||
|
||||
[package.metadata.binstall.overrides.'cfg(all(target_os = "macos", target_arch = "aarch64" ))']
|
||||
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-macOS-arm-v{ version }{ archive-suffix }"
|
||||
pkg-fmt = "tgz"
|
||||
|
||||
[package.metadata.binstall.overrides.'cfg(all(target_os = "macos", target_arch = "x86_64" ))']
|
||||
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-macOS-intel-v{ version }{ archive-suffix }"
|
||||
pkg-fmt = "tgz"
|
||||
|
||||
[package.metadata.binstall.overrides.'cfg(all(target_os = "linux", target_arch = "x86_64" ))']
|
||||
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-linux-x86_64-v{ version }{ archive-suffix }"
|
||||
pkg-fmt = "tgz"
|
||||
|
||||
[package.metadata.binstall.overrides.'cfg(all(target_os = "linux", target_arch = "aarch64" ))']
|
||||
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-linux-arm-v{ version }{ archive-suffix }"
|
||||
pkg-fmt = "tgz"
|
||||
|
||||
[package.metadata.binstall.overrides.'cfg(all(target_os = "windows", target_arch = "x86_64" ))']
|
||||
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-Windows-x86_64-v{ version }{ archive-suffix }"
|
||||
pkg-fmt = "zip"
|
||||
|
||||
[package.metadata.binstall.overrides.'cfg(all(target_os = "windows", target_arch = "aarch64" ))']
|
||||
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-Windows-arm-v{ version }{ archive-suffix }"
|
||||
pkg-fmt = "zip"
|
||||
|
||||
@@ -7,20 +7,26 @@ use std::io::Error;
|
||||
include!("src/arguments.rs");
|
||||
|
||||
fn main() -> Result<(), Error> {
|
||||
let output_folder = match env::var_os("OUT_DIR") {
|
||||
None => return Ok(()),
|
||||
Some(output_folder) => output_folder,
|
||||
let completions_folder = match env::var_os("HEXAPODA_COMPLETIONS") {
|
||||
Some(folder) if !folder.is_empty() => folder,
|
||||
_ => return Ok(()),
|
||||
};
|
||||
|
||||
let manpage_folder = match env::var_os("HEXAPODA_MANPAGE") {
|
||||
Some(folder) if !folder.is_empty() => folder,
|
||||
_ => return Ok(()),
|
||||
};
|
||||
|
||||
let mut command = Arguments::command();
|
||||
for &shell in Shell::value_variants() {
|
||||
generate_to(shell, &mut command, "hexapoda", &output_folder)?;
|
||||
generate_to(shell, &mut command, "hexapoda", &completions_folder)?;
|
||||
}
|
||||
generate_to(Nushell, &mut command, "hexapoda", &output_folder)?;
|
||||
generate_to(Nushell, &mut command, "hexapoda", &completions_folder)?;
|
||||
|
||||
clap_mangen::generate_to(command, &output_folder)?;
|
||||
clap_mangen::generate_to(command, &manpage_folder)?;
|
||||
|
||||
println!("cargo:warning=completions and manpage generated in {output_folder:?}");
|
||||
println!("cargo:warning=completions generated in {completions_folder:?}");
|
||||
println!("cargo:warning=manpage generated in {manpage_folder:?}");
|
||||
println!("cargo:rerun-if-changed=src/arguments.rs");
|
||||
|
||||
Ok(())
|
||||
|
||||
Reference in New Issue
Block a user