diff --git a/.github/workflows/manual-publish.yml b/.github/workflows/manual-publish.yml index 731290d..a45f395 100644 --- a/.github/workflows/manual-publish.yml +++ b/.github/workflows/manual-publish.yml @@ -25,7 +25,7 @@ jobs: - uses: ./.github/actions/ci - uses: ./.github/actions/build-docs - - uses: launchdarkly/gh-actions/actions/release-secrets@release-secrets-v1.0.0 + - uses: launchdarkly/gh-actions/actions/release-secrets@release-secrets-v1.2.0 name: 'Get crates.io token' with: aws_assume_role: ${{ vars.AWS_ROLE_ARN }} diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index cf95bae..7641398 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -13,38 +13,34 @@ 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['eventsource-client--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['eventsource-client--release_created'] == 'true' }} run: | rustup override set 1.72 rustup component add rustfmt clippy - - uses: launchdarkly/gh-actions/actions/release-secrets@release-secrets-v1.0.0 + - uses: launchdarkly/gh-actions/actions/release-secrets@release-secrets-v1.2.0 name: 'Get crates.io token' - if: ${{ steps.release.outputs.releases_created }} + if: ${{ steps.release.outputs['eventsource-client--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['eventsource-client--release_created'] == 'true' }} - uses: ./.github/actions/build-docs - if: ${{ steps.release.outputs.releases_created }} + if: ${{ steps.release.outputs['eventsource-client--release_created'] == 'true' }} - uses: ./.github/actions/publish - if: ${{ steps.release.outputs.releases_created }} + if: ${{ steps.release.outputs['eventsource-client--release_created'] == 'true' }} with: dry_run: false