diff --git a/.gitea/actions/deploy/action.yaml b/.gitea/actions/deploy/action.yaml index ecb301c..2c29c56 100644 --- a/.gitea/actions/deploy/action.yaml +++ b/.gitea/actions/deploy/action.yaml @@ -14,6 +14,9 @@ inputs: secrets: required: false type: string + host: + required: true + type: string runs: using: 'composite' diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 6bebc54..40004a1 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -36,4 +36,5 @@ jobs: secrets: ${{ toJSON(secrets) }} environment: ${{ inputs.environment }} tag: ${{ inputs.tag }} - migrate: ${{ inputs.migrate }} \ No newline at end of file + migrate: ${{ inputs.migrate }} + host: ${{ inputs.host }} \ No newline at end of file