# HG changeset patch # User Anthony Nowell # Date 1661808748 25200 # Node ID 60e74d6a2b8862bef2327e25dc7d4c7ff7ead726 # Parent 3b2ff50db0104f075ae116b8a5b84d1f919258f1# Parent 80d496e87f8f0b3325f325a7f14fde1bf3791422 Merge pull request #10 from Nigma1337/master Automate crate publishing diff -r 3b2ff50db010 -r 60e74d6a2b88 .github/workflows/build.yml --- a/.github/workflows/build.yml Wed Jun 08 09:28:13 2022 -0700 +++ b/.github/workflows/build.yml Mon Aug 29 14:32:28 2022 -0700 @@ -1,22 +1,19 @@ on: - pull_request: + push: branches: - master workflow_call: -name: Build +name: Build & publish jobs: - check: - name: Check & Lint + build: runs-on: ubuntu-latest steps: - name: Checkout sources uses: actions/checkout@v2 - - name: Install PAM dev files run: sudo apt-get install -y libpam0g-dev - - name: Use cargo cache uses: actions/cache@v2 with: @@ -27,48 +24,18 @@ ~/.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: Run cargo check - uses: actions-rs/cargo@v1 - with: - command: check - args: --manifest-path pam/Cargo.toml - - - name: Run cargo test - uses: actions-rs/cargo@v1 - with: - command: test - args: --manifest-path pam/Cargo.toml - - - name: Run cargo check on pam-http - uses: actions-rs/cargo@v1 + - name: Publish module + uses: katyo/publish-crates@v1 with: - command: check - args: --manifest-path pam-http/Cargo.toml - - - name: Run cargo check on pam-sober - uses: actions-rs/cargo@v1 - with: - command: check - args: --manifest-path pam-sober/Cargo.toml - - - name: Run cargo fmt - uses: actions-rs/cargo@v1 - with: - command: fmt - args: --manifest-path pam/Cargo.toml --all --check - - - name: Run cargo clippy - uses: actions-rs/cargo@v1 - with: - command: clippy - args: --manifest-path pam/Cargo.toml -- -D warnings - - + 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 + path: pam + args: --package pam-bindings \ No newline at end of file diff -r 3b2ff50db010 -r 60e74d6a2b88 .github/workflows/check.yml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.github/workflows/check.yml Mon Aug 29 14:32:28 2022 -0700 @@ -0,0 +1,72 @@ +on: + pull_request: + branches: + - master + workflow_call: + +name: Check + +jobs: + check: + name: Check & Lint + runs-on: ubuntu-latest + steps: + - name: Checkout sources + uses: actions/checkout@v2 + + - name: Install PAM dev files + run: sudo apt-get install -y libpam0g-dev + + - 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: Run cargo check + uses: actions-rs/cargo@v1 + with: + command: check + args: --manifest-path pam/Cargo.toml + + - name: Run cargo test + uses: actions-rs/cargo@v1 + with: + command: test + args: --manifest-path pam/Cargo.toml + + - name: Run cargo check on pam-http + uses: actions-rs/cargo@v1 + with: + command: check + args: --manifest-path pam-http/Cargo.toml + + - name: Run cargo check on pam-sober + uses: actions-rs/cargo@v1 + with: + command: check + args: --manifest-path pam-sober/Cargo.toml + + - name: Run cargo fmt + uses: actions-rs/cargo@v1 + with: + command: fmt + args: --manifest-path pam/Cargo.toml --all --check + + - name: Run cargo clippy + uses: actions-rs/cargo@v1 + with: + command: clippy + args: --manifest-path pam/Cargo.toml -- -D warnings \ No newline at end of file diff -r 3b2ff50db010 -r 60e74d6a2b88 pam-http/Cargo.toml --- a/pam-http/Cargo.toml Wed Jun 08 09:28:13 2022 -0700 +++ b/pam-http/Cargo.toml Mon Aug 29 14:32:28 2022 -0700 @@ -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 60e74d6a2b88 pam-sober/Cargo.toml --- a/pam-sober/Cargo.toml Wed Jun 08 09:28:13 2022 -0700 +++ b/pam-sober/Cargo.toml Mon Aug 29 14:32:28 2022 -0700 @@ -8,5 +8,5 @@ crate-type = ["cdylib"] [dependencies] -pam = { path = "../pam/" } +pam-bindings = { path = "../pam/" } rand = "0.8.4" diff -r 3b2ff50db010 -r 60e74d6a2b88 pam/Cargo.toml --- a/pam/Cargo.toml Wed Jun 08 09:28:13 2022 -0700 +++ b/pam/Cargo.toml Mon Aug 29 14:32:28 2022 -0700 @@ -1,11 +1,11 @@ [package] -name = "pam" +name = "pam-bindings" description = "PAM bindings for Rust" -version = "0.1.0" +version = "0.1.1" authors = [ "Anthony Nowell " ] repository = "https://github.com/anowell/pam-rs" -readme = "README.md" +readme = "../README.md" keywords = ["pam", "ffi", "linux", "authentication"] license = "MIT"