Compare commits

..

No commits in common. "310945bf0bbc32c7963e13a68f2002ddd43fa835" and "5488f851f91093db04b449b816537c9f35141c9b" have entirely different histories.

View file

@ -14,10 +14,15 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable - uses: dtolnay/rust-toolchain@stable
- uses: katyo/publish-crates@v2 - run: cargo check --all-features --all-targets
with: - run: rustup component add rustfmt
args: --index "https://git.cscherr.de/PlexSheep/_cargo-index.git" - run: cargo fix --all-features --all-targets
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN_CSCHERRDE }} - run: cargo fmt --all
# - uses: katyo/publish-crates@v2 - run: cargo test --all-features --all-targets
# with: - run: |
# registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN_CRATESIO }} for CRATE in {libpt-log,libpt-core,libpt-math,libpt-ccc,libpt-bintols,libpt-hedu,libpt-net,libpt-bin,libpt}; do
cargo publish \
--index "https://git.cscherr.de/PlexSheep/_cargo-index.git" \
-p $CRATE
;
done