Skip to content
This repository has been archived by the owner on Dec 4, 2024. It is now read-only.

Publish Docs

Publish Docs #2

on:
workflow_dispatch:
name: Publish Docs
jobs:
build-publish:
runs-on: ubuntu-latest
permissions:
id-token: write # Needed if using OIDC to get release secrets.
contents: write # Needed in this case to write github pages.
steps:
- uses: actions/checkout@v4
- uses: launchdarkly/gh-actions/actions/[email protected]
name: Assume aws role
with:
aws_assume_role: ${{ vars.AWS_ROLE_ARN }}
- id: build
name: Build and Test
uses: ./.github/actions/ci
- id: publish
name: Publish Documentation
uses: ./.github/actions/publish-docs
with:
token: ${{secrets.GITHUB_TOKEN}}