Deploy Dev (Debug) #25
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: Deploy Dev (Debug) | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| cd-dcl-pulse-debug: | |
| uses: decentraland/platform-actions/.github/workflows/apps-docker-next.yml@main | |
| with: | |
| service-name: pulse-server | |
| image-name: pulse-server-debug | |
| docker-tag: debug | |
| # Use the Dockerfile from the ref being deployed (not main): this is a workflow_dispatch that | |
| # deploys a branch, and the branch's Dockerfile may add pre-restore COPY lines (e.g. the | |
| # rust-web-transport fetch script) that main's Dockerfile doesn't have yet. | |
| dockerfile-url: https://raw.githubusercontent.com/decentraland/Pulse/${{ github.ref_name }}/src/DCLPulse/Dockerfile.dev-debug | |
| deployment-environment: dev | |
| secrets: inherit |