actions-toolkit-sys 0.3.1

Raw bindings to the GitHub actions toolkit API for projects using wasm-bindgen.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Raw bindings to the GitHub actions toolkit API for projects using wasm-bindgen.

#![deny(clippy::all)]
#![deny(missing_docs)]

/// Core functions for setting results, logging, registering secrets and exporting variables.
pub mod core;
/// Execute your tools on the command line in a cross-platform way.
pub mod exec;
/// An Octokit client hydrated with the context of the current action.
pub mod github;
/// Core functions for CLI filesystem scenarios.
pub mod io;
/// Functions necessary for downloading and caching tools.
pub mod tool_cache;