Skip to content

Add functionality to append screenshots of mockups to the Github Issue #40

Add functionality to append screenshots of mockups to the Github Issue

Add functionality to append screenshots of mockups to the Github Issue #40

Workflow file for this run

name: Build and Deploy to Development
on:
pull_request:
branches: [main]
jobs:
build-dev-container:
uses: ./.github/workflows/build-docker-images.yml
secrets: inherit
deploy-dev-container:
needs: build-dev-container
uses: ./.github/workflows/deploy-docker-images.yml
secrets: inherit
with:
environment: Production
server_image_tag: "${{ needs.build-dev-container.outputs.server_image_tag }}"
app_image_tag: "${{ needs.build-dev-container.outputs.app_image_tag }}"