This repository was archived by the owner on Aug 13, 2026. It is now read-only.
Manual deployment #15
This file contains hidden or 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: Manual deployment | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| deployment-environment: | |
| required: true | |
| type: choice | |
| options: | |
| - prd | |
| - stg | |
| - dev | |
| default: prd | |
| description: Environment | |
| tag: | |
| required: true | |
| default: "latest" | |
| type: string | |
| description: "Docker tag (quay.io)" | |
| jobs: | |
| deployment: | |
| if: ${{ inputs.deployment-environment }} | |
| name: "Deploy to: ${{ inputs.deployment-environment }}" | |
| runs-on: ubuntu-latest | |
| environment: ${{ inputs.deployment-environment }} | |
| steps: | |
| - name: Trigger deployment | |
| id: deploy | |
| uses: decentraland/dcl-deploy-action@main | |
| with: | |
| dockerImage: "quay.io/decentraland/lods-generator:${{ inputs.tag }}" | |
| serviceName: "lods-generator" | |
| env: ${{ inputs.deployment-environment }} | |
| token: ${{ secrets.GITHUB_TOKEN }} |