Skip to content

chore(main): release 4.0.3 (#75) #8

chore(main): release 4.0.3 (#75)

chore(main): release 4.0.3 (#75) #8

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
with:
fetch-depth: 0 # If you only need the current version keep this.
#
# This step runs and updates an existing PR
#
- uses: ./.github/actions/update-cabal
if: ${{ steps.release.outputs.pr != '' }}
with:
branch: ${{ fromJSON(steps.release.outputs.pr).headBranchName }}
#
# These remaining steps are ONLY run if a release was actually created
#
- uses: launchdarkly/gh-actions/actions/release-secrets@release-secrets-v1.0.0
name: 'Get Hackage token'
if: ${{ steps.release.outputs.releases_created }}
with:
aws_assume_role: ${{ vars.AWS_ROLE_ARN }}
ssm_parameter_pairs: '/production/common/releasing/hackage/password = HACKAGE_TOKEN'
- uses: ./.github/actions/setup-cache
if: ${{ steps.release.outputs.releases_created }}
- 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:
token: ${{ env.HACKAGE_TOKEN }}
dry_run: 'false'
- uses: ./.github/actions/publish-docs
if: ${{ steps.release.outputs.releases_created }}
with:
# If publishing somewhere else, then get the token from SSM. If you need both github,
# and another token, then add more tokens to the composite action.
token: ${{secrets.GITHUB_TOKEN}}