deployment #2
Workflow file for this run
This file contains 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
# Only modify variables that have a comment above them | |
# Contact IWG if you wish to alter the template otherwise | |
name: Deploy | |
on: | |
push: | |
branches: main | |
pull_request: | |
branches: ['*'] | |
jobs: | |
deploy: | |
name: Environments | |
uses: arg-tech/deployment-templates/.github/workflows/default-deploy-template.yml@main | |
secrets: inherit | |
with: | |
# Specify the target production server | |
target_production_server_nickname: argand | |
# Define a URL for your app, without the http:// or www prefixes | |
full_app_url: amf-ptc.amfws.arg.tech | |
# The port that is exposed on localhost (must be the same as in docker-compose.yml) | |
app_port: 5003 |