changeset 36:d1f0c1cf3c6e

Github actions publish crate
author Nigma <magnusgsvend@gmail.com>
date Sun, 24 Jul 2022 02:05:30 +0200
parents 3b2ff50db010
children 09fa82155033
files .github/workflows/build.yml pam-http/Cargo.toml pam-sober/Cargo.toml pam/Cargo.toml
diffstat 4 files changed, 32 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- 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
 
--- 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"] }
--- 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"
--- 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 <anowell@gmail.com>" ]
 repository = "https://github.com/anowell/pam-rs"
-readme = "README.md"
+readme = "../README.md"
 keywords = ["pam", "ffi", "linux", "authentication"]
 license = "MIT"