Skip to content

Commit

Permalink
Fix crates names
Browse files Browse the repository at this point in the history
  • Loading branch information
nsyzrantsev committed Jan 10, 2025
1 parent 52ba976 commit fc683c6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Verify package
run: cargo verify-project --manifest-path zefiro-pipeline-engine/zefiro-cwl-parser/Cargo.toml
run: cargo verify-project --manifest-path zefiro-core/zefiro-cwl-parser/Cargo.toml
- name: Set the release version
run: echo "RELEASE_VERSION=${GITHUB_REF:11}" >> "$GITHUB_ENV"
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Publish the zefiro-cwl-parser library
run: |
cargo publish --manifest-path zefiro-pipeline-engine/zefiro-cwl-parser/Cargo.toml \
cargo publish --manifest-path zefiro-core/zefiro-cwl-parser/Cargo.toml \
--locked --token ${{ secrets.CARGO_REGISTRY_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
- name: Run cargo-msrv
shell: bash
run: |
for package in zefiro-cli zefiro-pipeline-engine zefiro-ui; do
for package in zefiro-cli zefiro-core zefiro-ui; do
printf "Checking MSRV for %s..." "$package"
cargo msrv --output-format json --path "$package" verify | tail -n 1 | jq --exit-status '.success'
done
2 changes: 1 addition & 1 deletion zefiro-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "zefiro-pipeline-engine"
name = "zefiro-core"
version = "0.0.0-pre"
edition = "2021"
rust-version = "1.83.0"

0 comments on commit fc683c6

Please sign in to comment.