Skip to content

Commit

Permalink
Merge pull request #2 from terminalx-resonite/fix/deploy-yaml
Browse files Browse the repository at this point in the history
Deployment FIx
  • Loading branch information
daleglass authored Feb 28, 2024
2 parents dd32c4b + 2c5537a commit fbba766
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ on:

jobs:
build-and-push:
runs-on: docker

runs-on: [self-hosted, linux, podman, docker]
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand All @@ -23,6 +22,13 @@ jobs:
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build server runtime with compiled binaries
uses: docker/build-push-action@v3
with:
context: .
file: ./Dockerfile.build
push: true
tags: ghcr.io/${{ github.repository }}/domain-server-builder:latest

- name: Build server runtime with compiled binaries
uses: docker/build-push-action@v3
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version: "3.8"
services:
overte-server:
#image: domain-server
image: ghcr.io/overte-org/overte-domain-server-docker/domain-server:latest
container_name: overte-server
restart: unless-stopped
Expand Down

0 comments on commit fbba766

Please sign in to comment.