Skip to content

increase deploy timeout #23

increase deploy timeout

increase deploy timeout #23

Workflow file for this run

name: Deploy

Check failure on line 1 in .github/workflows/deploy.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy.yml

Invalid workflow file

(Line: 30, Col: 5): Unexpected value 'uses', (Line: 31, Col: 5): Unexpected value 'with', (Line: 37, Col: 5): Unexpected value 'secrets', (Line: 29, Col: 5): Required property is missing: runs-on
on:
workflow_dispatch:
inputs:
branch_name:
description: 'Which branch to deploy'
required: true
type: string
commit_sha:
description: 'Commit SHA to deploy'
required: false
environment_name:
description: 'Which environment to deploy to'
required: true
type: string
triggered_by:
description: 'Username that triggered deployment (not required, shown if triggered via GitHub UI, logged if triggered via GitHub app)'
required: false
type: string
concurrency: ${{ github.event.inputs.environment_name }}
env:
CI: true
jobs:
deploy:
timeout-minutes: 30
uses: ls1intum/.github/.github/workflows/deploy-docker-compose.yml@main
with:
environment: ${{ inputs.environment_name }}
docker-compose-file: "./docker/docker-compose.prod.yaml"
main-image-name: ghcr.io/ls1intum/module-management/server
image-tag: ""
deployment-base-path: "/opt/module-management"
secrets: inherit