Skip to content

Docker deployment via GitHub Actions #6

Docker deployment via GitHub Actions

Docker deployment via GitHub Actions #6

Workflow file for this run

name: Build and Deploy to Dev
on:
pull_request:
jobs:
build-dev-container:
uses: ./.github/workflows/build-and-push-docker.yml

Check failure on line 8 in .github/workflows/dev.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/dev.yml

Invalid workflow file

error parsing called workflow ".github/workflows/dev.yml" -> "./.github/workflows/build-and-push-docker.yml" : failed to fetch workflow: workflow was not found.
secrets: inherit
deploy-dev-container:
needs: build-dev-container
uses: ./.github/workflows/deploy-docker.yml
secrets: inherit
with:
environment: Dev
apollon_standalone_image_tag: "${{ needs.build-dev-container.outputs.apollon_standalone_image_tag }}"