Skip to content

Add hyperlink text color definition to GUI #3

Add hyperlink text color definition to GUI

Add hyperlink text color definition to GUI #3

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