Add hyperlink text color definition to GUI #3
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: Build and Deploy Ren'Py Web Game | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- christmas-copilot-quest-rpg/** | |
workflow_dispatch: | |
inputs: | |
source_branch: | |
description: The source branch to build from | |
required: true | |
type: string | |
target_branch: | |
description: The target branch to deploy to | |
required: true | |
type: string | |
deployment_environment: | |
description: The environment to deploy to or empty for the production environment | |
required: false | |
type: string | |
jobs: | |
build: | |
uses: ./.github/workflows/renpy-build.yml | |
with: | |
source_branch: ${{ inputs.source_branch || 'main' }} | |
target_branch: ${{ inputs.target_branch || 'gh-pages' }} | |
secrets: inherit | |
permissions: | |
contents: write | |
deploy: | |
needs: build | |
uses: ./.github/workflows/swa-deploy.yml | |
with: | |
branch: ${{ inputs.target_branch || 'gh-pages' }} | |
deployment_environment: ${{ inputs.deployment_environment }} | |
secrets: inherit |