Skip to content

Commit

Permalink
Exclude unnecessary files from crate
Browse files Browse the repository at this point in the history
Signed-off-by: Sreekanth <[email protected]>
  • Loading branch information
BulkBeing committed Oct 9, 2024
1 parent e4e384f commit 3db7349
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 12 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,3 @@ jobs:

- name: Dry run Cargo Publish
run: cargo publish --dry-run

- name: Dump GitHub context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
8 changes: 1 addition & 7 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ on:
push:
tags:
- 'v*'
branches:
- main
- dev-release*

defaults:
run:
Expand Down Expand Up @@ -37,8 +34,5 @@ jobs:
- name: Run tests
run: make test

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

- name: Dry run Cargo Publish
run: cargo publish --dry-run
run: CARGO_REGISTRY_TOKEN=${{ secrets.CARGO_PUBLISH }} cargo publish --dry-run
7 changes: 7 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@ homepage = "https://numaproj.github.io/numaflow/"
repository = "https://github.com/numaproj/numaflow-rs"
keywords = ["numaflow", "streaming", "messaging", "event-driven"]
categories = ["network-programming", "api-bindings"]
exclude = [
".github/*",
".gitignore",
".dockerignore",
"hack/*",
"Makefile",
]


[lib]
Expand Down

0 comments on commit 3db7349

Please sign in to comment.