# HG changeset patch # User Nigma # Date 1658621130 -7200 # Node ID d1f0c1cf3c6e006d5110c45574bafe1a955c96bb # Parent 3b2ff50db0104f075ae116b8a5b84d1f919258f1 Github actions publish crate diff -r 3b2ff50db010 -r d1f0c1cf3c6e .github/workflows/build.yml --- a/.github/workflows/build.yml Wed Jun 08 09:28:13 2022 -0700 +++ b/.github/workflows/build.yml Sun Jul 24 02:05:30 2022 +0200 @@ -70,5 +70,33 @@ with: command: clippy args: --manifest-path pam/Cargo.toml -- -D warnings + build: + needs: check + runs-on: ubuntu-latest + steps: + - name: Use cargo cache + uses: actions/cache@v2 + with: + path: | + ~/.cargo/bin/ + ~/.cargo/registry/index/ + ~/.cargo/registry/cache/ + ~/.cargo/git/db/ + target/ + key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} + - name: Install stable toolchain + uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: stable + override: true + - name: Publish module + uses: katyo/publish-crates@v1 + with: + registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }} + check-repo: ${{ github.event_name == 'push' }} + ignore-unpublished-changes: true + # Only publish pam module, as pam-http and pam-sober are example projects + args: --package pam-bindings diff -r 3b2ff50db010 -r d1f0c1cf3c6e pam-http/Cargo.toml --- a/pam-http/Cargo.toml Wed Jun 08 09:28:13 2022 -0700 +++ b/pam-http/Cargo.toml Sun Jul 24 02:05:30 2022 +0200 @@ -8,5 +8,5 @@ crate-type = ["cdylib"] [dependencies] -pam = { path = "../pam/" } +pam-bindings = { path = "../pam/" } reqwest = { version = "0.11.3", features = ["blocking"] } diff -r 3b2ff50db010 -r d1f0c1cf3c6e pam-sober/Cargo.toml --- a/pam-sober/Cargo.toml Wed Jun 08 09:28:13 2022 -0700 +++ b/pam-sober/Cargo.toml Sun Jul 24 02:05:30 2022 +0200 @@ -8,5 +8,5 @@ crate-type = ["cdylib"] [dependencies] -pam = { path = "../pam/" } +pam-bindings = { path = "../pam/" } rand = "0.8.4" diff -r 3b2ff50db010 -r d1f0c1cf3c6e pam/Cargo.toml --- a/pam/Cargo.toml Wed Jun 08 09:28:13 2022 -0700 +++ b/pam/Cargo.toml Sun Jul 24 02:05:30 2022 +0200 @@ -1,11 +1,11 @@ [package] -name = "pam" +name = "pam-bindings" description = "PAM bindings for Rust" version = "0.1.0" authors = [ "Anthony Nowell " ] repository = "https://github.com/anowell/pam-rs" -readme = "README.md" +readme = "../README.md" keywords = ["pam", "ffi", "linux", "authentication"] license = "MIT"