Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,6 @@ jobs:
sudo apt-get install -y protobuf-compiler
protoc --version

- name: Set version
run: sed -i "s/version = \"0.0.0\"/version = \"${{ github.ref_name }}\"/" Cargo.toml

- name: Check formatting
run: cargo fmt --all -- --check

Expand All @@ -51,6 +48,9 @@ jobs:
- name: Run tests
run: cargo test --locked --features all

- name: Set version
run: sed -i "s/version = \"0.0.0\"/version = \"${{ github.ref_name }}\"/" Cargo.toml

- name: Cargo Login
run: cargo login ${{secrets.CARGO_REGISTRY_TOKEN}}

Expand Down