fix: Allow event retries even if initial request fails to connect (#93) #23
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Release Please | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
release-package: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write # Needed if using OIDC to get release secrets. | |
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 | |
id: release | |
with: | |
command: manifest | |
token: ${{secrets.GITHUB_TOKEN}} | |
default-branch: main | |
- uses: actions/checkout@v4 | |
if: ${{ steps.release.outputs.releases_created }} | |
with: | |
fetch-depth: 0 # If you only need the current version keep this. | |
- name: Setup rust tooling | |
if: ${{ steps.release.outputs.releases_created }} | |
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 }} | |
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 }} | |
- uses: ./.github/actions/build-docs | |
if: ${{ steps.release.outputs.releases_created }} | |
- uses: ./.github/actions/publish | |
if: ${{ steps.release.outputs.releases_created }} | |
with: | |
dry_run: false |