Skip to content

Workflow file for this run

name: Run Release Release
on:
push:
branches:
# - main
- rlamb/github-actions-ci
jobs:
release-package:
runs-on: ubuntu-latest
permissions: # These are needed if using OIDC to get release secrets.
id-token: write
contents: write
pull-requests: write
steps:
- uses: google-github-actions/release-please-action@v3
id: release
with:
command: manifest
token: ${{secrets.GITHUB_TOKEN}}
default-branch: rlamb/github-actions-ci
- uses: erlef/setup-beam@v1
with:
version-type: loose
otp-version: 25.x
- uses: actions/checkout@v3
if: ${{ steps.release.outputs.releases_created }}
with:
fetch-depth: 0 #If you only need the current version keep this.
- uses: launchdarkly/gh-actions/actions/release-secrets
name: 'Get the hex publishing token'
with:
aws_assume_role: ${{ vars.AWS_ROLE_ARN }}
ssm_parameter_pairs: '/production/common/releasing/hex/api_key = HEX_AUTH_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:
# 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. Could be $NODE_AUTH_TOKEN
# from the release-secrets action earlier in this workflow.
token: ${{secrets.GITHUB_TOKEN}}
- 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}}
- uses: ./.github/actions/publish
if: ${{ steps.release.outputs.releases_created }}
with:
token: ${{ env.HEX_AUTH_TOKEN }}
prerelease: false
dry_run: false