Skip to content

Merge pull request #3 from terminalx-resonite/fix/deploy-yaml #4

Merge pull request #3 from terminalx-resonite/fix/deploy-yaml

Merge pull request #3 from terminalx-resonite/fix/deploy-yaml #4

Workflow file for this run

name: Build and Push Domain Server Images
on:
push:
branches:
- main
- testing
jobs:
build-and-push:
runs-on: [self-hosted, linux, podman, docker]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

Check failure on line 22 in .github/workflows/deploy.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy.yaml

Invalid workflow file

You have an error in your yaml syntax on line 22
- name: Build server runtime with compiled binaries
run: |
podman build -t ghcr.io/${{ github.repository }}/domain-server-builder:latest -f ./Dockerfile.build .
podman push ghcr.io/${{ github.repository }}/domain-server-builder:latest
podman build -t ghcr.io/${{ github.repository }}/domain-server:latest -f ./Dockerfile.runtime .
podman push ghcr.io/${{ github.repository }}/domain-server:latest