Skip to content

Commit

Permalink
Update release-please
Browse files Browse the repository at this point in the history
  • Loading branch information
keelerm84 committed Aug 12, 2024
1 parent f95722a commit 88bfc30
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,38 +13,38 @@ jobs:
contents: write # Contents and pull-requests are for release-please to make releases.
pull-requests: write
steps:
- uses: google-github-actions/release-please-action@v3
- uses: googleapis/release-please-action@v4
id: release
with:
command: manifest
token: ${{secrets.GITHUB_TOKEN}}
default-branch: main

- uses: actions/checkout@v4
if: ${{ steps.release.outputs.releases_created }}
if: ${{ steps.release.outputs['launchdarkly-server-sdk--release_created'] == 'true' }}
with:
fetch-depth: 0 # If you only need the current version keep this.

- name: Setup rust tooling
if: ${{ steps.release.outputs.releases_created }}
if: ${{ steps.release.outputs['launchdarkly-server-sdk--release_created'] == 'true' }}
run: |
rustup override set 1.74
rustup component add rustfmt clippy
- uses: launchdarkly/gh-actions/actions/[email protected]
name: 'Get crates.io token'
if: ${{ steps.release.outputs.releases_created }}
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'

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

- uses: ./.github/actions/build-docs
if: ${{ steps.release.outputs.releases_created }}
if: ${{ steps.release.outputs['launchdarkly-server-sdk--release_created'] == 'true' }}

- uses: ./.github/actions/publish
if: ${{ steps.release.outputs.releases_created }}
if: ${{ steps.release.outputs['launchdarkly-server-sdk--release_created'] == 'true' }}
with:
dry_run: false

0 comments on commit 88bfc30

Please sign in to comment.