diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 7e9e9b119f9..787eee4298d 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -24,10 +24,7 @@ jobs: components: rustfmt, rust-src - name: Build Documentation - run: cargo doc --all --no-deps - - - name: Build Documentation - run: cargo doc --all --no-deps + run: cargo doc --features full --no-deps - name: Deploy if: github.ref == 'refs/heads/main' diff --git a/README.md b/README.md index 8680755c6cf..466ee651541 100644 --- a/README.md +++ b/README.md @@ -223,8 +223,12 @@ Unless you explicitly state otherwise, any contribution intentionally submitted ## How to generate the changelog -Run - ```bash docker run -it --rm -v "$(pwd)":/usr/local/src/your-app githubchangeloggenerator/github-changelog-generator --user jorgecarleitao --project arrow2 --token TOKEN ``` + +## How to publish + +```bash +cargo publish --features full +```