Skip to content

Commit 3c0d03f

Browse files
authored
ci: Fix release please workspace configuration (#64)
1 parent 2fe6e0d commit 3c0d03f

File tree

7 files changed

+8
-7
lines changed

7 files changed

+8
-7
lines changed

.github/workflows/manual-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup rust tooling
2121
run: |
2222
rustup override set 1.68
23-
rustup component add rustfmt
23+
rustup component add rustfmt clippy
2424
2525
- uses: ./.github/actions/ci
2626
- uses: ./.github/actions/build-docs

.github/workflows/release-please.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,11 @@ jobs:
2929
if: ${{ steps.release.outputs.releases_created }}
3030
run: |
3131
rustup override set 1.68
32-
rustup component add rustfmt
32+
rustup component add rustfmt clippy
3333
3434
- uses: launchdarkly/gh-actions/actions/release-secrets@release-secrets-v1.0.0
3535
name: 'Get crates.io token'
36+
if: ${{ steps.release.outputs.releases_created }}
3637
with:
3738
aws_assume_role: ${{ vars.AWS_ROLE_ARN }}
3839
ssm_parameter_pairs: '/production/common/releasing/cratesio/api_token = CARGO_REGISTRY_TOKEN'

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# eventsource-client
22

3+
[![Run CI](https://github.com/launchdarkly/rust-eventsource-client/actions/workflows/ci.yml/badge.svg)](https://github.com/launchdarkly/rust-eventsource-client/actions/workflows/ci.yml)
4+
35
Client for the [Server-Sent Events] protocol (aka [EventSource]).
46

57
[Server-Sent Events]: https://html.spec.whatwg.org/multipage/server-sent-events.html
File renamed without changes.

eventsource-client/Cargo.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,7 @@ authors = ["LaunchDarkly"]
77
edition = "2021"
88
license = "Apache-2.0"
99
keywords = ["launchdarkly", "feature-flags", "feature-toggles", "eventsource", "server-sent-events"]
10-
exclude = [
11-
".circleci",
12-
".ldrelease"
13-
]
10+
exclude = ["CHANGELOG.md"]
1411

1512
[dependencies]
1613
futures = "0.3.21"

eventsource-client/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# eventsource-client
22

3+
[![Run CI](https://github.com/launchdarkly/rust-eventsource-client/actions/workflows/ci.yml/badge.svg)](https://github.com/launchdarkly/rust-eventsource-client/actions/workflows/ci.yml)
4+
35
Client for the [Server-Sent Events] protocol (aka [EventSource]).
46

57
[Server-Sent Events]: https://html.spec.whatwg.org/multipage/server-sent-events.html

release-please-config.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"plugins": ["cargo-workspace"],
32
"release-type": "rust",
43
"bump-minor-pre-major": true,
54
"versioning": "default",

0 commit comments

Comments
 (0)