Skip to content

Docker deployment via GitHub Actions #14

Docker deployment via GitHub Actions

Docker deployment via GitHub Actions #14

Workflow file for this run

name: Build and Deploy to Dev
on:
pull_request:
branches: [main]
jobs:
build-dev-container:
uses: ./.github/workflows/build-and-push.yml
secrets: inherit
deploy-dev-container:
needs: build-dev-container
uses: ./.github/workflows/deploy-docker.yml
secrets: inherit
with:
environment: Dev
image-name: ls1intum/apollon_standalone
image-tag: "${{ needs.build-dev-container.outputs.image-tag }}"