Permissions. #29
Workflow file for this run
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 Release | |
on: | |
push: | |
branches: | |
# - main | |
- rlamb/github-actions-ci | |
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: rlamb/github-actions-ci | |
- uses: erlef/setup-beam@v1 | |
if: ${{ steps.release.outputs.releases_created }} | |
with: | |
version-type: loose | |
otp-version: 25.x | |
rebar3-version: 3.18.0 | |
- uses: actions/checkout@v3 | |
if: ${{ steps.release.outputs.releases_created }} | |
with: | |
fetch-depth: 0 #If you only need the current version keep this. | |
- uses: ./.github/actions/configure-rebar | |
with: | |
aws_assume_role: ${{ vars.AWS_ROLE_ARN }} | |
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: | |
# 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: | |
dry_run: false |