Merge pull request #1521 from madeline-underwood/python_IG_update #1483
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
# This workflow will be triggered on a push to the 'main' branch automatically or when called manually. | |
# Upon running this workflow, the website will be built and deployed to the internal instance. | |
name: Build and Deploy Internal Website | |
on: | |
# Runs on pushes to the 'main' branch | |
push: | |
branches: [main] | |
# Allows to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build_and_deploy_internal: | |
name: Build and Deploy Internal | |
uses: ./.github/workflows/deploy.yml | |
permissions: | |
id-token: write | |
contents: read | |
with: | |
target: internal | |
secrets: | |
AWS_OIDC_ROLE: ${{ secrets.AWS_OIDC_ROLE_INTERNAL }} | |
HUGO_LLM_API: ${{ secrets.HUGO_LLM_API }} |