Skip to content
Merged
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions .github/workflows/manual-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
workflow_dispatch:
inputs:
dry_run:
description: 'Is this a dry run. If so no package will be published.'
description: "Is this a dry run. If so no package will be published."
type: boolean
required: true

Expand All @@ -19,17 +19,17 @@ jobs:

- name: Setup rust tooling
run: |
rustup override set 1.81
rustup override set 1.82
rustup component add rustfmt clippy

- uses: ./.github/actions/ci
- uses: ./.github/actions/build-docs

- uses: launchdarkly/gh-actions/actions/release-secrets@release-secrets-v1.2.0
name: 'Get crates.io token'
name: "Get crates.io token"
with:
aws_assume_role: ${{ vars.AWS_ROLE_ARN }}
ssm_parameter_pairs: '/production/common/releasing/cratesio/api_token = CARGO_REGISTRY_TOKEN'
ssm_parameter_pairs: "/production/common/releasing/cratesio/api_token = CARGO_REGISTRY_TOKEN"

- uses: ./.github/actions/publish
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ jobs:
- name: Setup rust tooling
if: ${{ steps.release.outputs['launchdarkly-server-sdk--release_created'] == 'true' }}
run: |
rustup override set 1.81
rustup override set 1.82
rustup component add rustfmt clippy

- uses: launchdarkly/gh-actions/actions/release-secrets@release-secrets-v1.2.0
name: 'Get crates.io token'
name: "Get crates.io token"
if: ${{ steps.release.outputs['launchdarkly-server-sdk--release_created'] == 'true' }}
with:
aws_assume_role: ${{ vars.AWS_ROLE_ARN }}
ssm_parameter_pairs: '/production/common/releasing/cratesio/api_token = CARGO_REGISTRY_TOKEN'
ssm_parameter_pairs: "/production/common/releasing/cratesio/api_token = CARGO_REGISTRY_TOKEN"

- uses: ./.github/actions/ci
if: ${{ steps.release.outputs['launchdarkly-server-sdk--release_created'] == 'true' }}
Expand Down