Skip to content

Commit

Permalink
test release dv images
Browse files Browse the repository at this point in the history
  • Loading branch information
luiztauffer committed Aug 31, 2023
1 parent 7a15a7a commit 0d72b0e
Show file tree
Hide file tree
Showing 2 changed files with 89 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/release-frontend-dev.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: Build and publish Domino Frontend images

on:
push:
branches:
- dev
paths:
- frontend/**

jobs:
release-domino-frontend-k8s:
name: Domino Frontend Image
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v3
with:
push: true # Push is a shorthand for --output=type=registry
tags: ghcr.io/tauffer-consulting/domino-frontend-dev:k8s
context: frontend
file: frontend/Dockerfile.prod # Path to the Dockerfile
release-domino-frontend-compose:
name: Domino Frontend Image
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v3
with:
push: true # Push is a shorthand for --output=type=registry
tags: ghcr.io/tauffer-consulting/domino-frontend-dev:compose
context: frontend
file: frontend/Dockerfile.compose # Path to the Dockerfile
33 changes: 33 additions & 0 deletions .github/workflows/release-rest-dev.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Build and publish Domino REST production image

on:
push:
branches:
- dev
paths:
- rest/**

jobs:
release-domino-rest:
name: Domino REST API Image
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v3
with:
push: true # Push is a shorthand for --output=type=registry
tags: ghcr.io/tauffer-consulting/domino-rest-dev:latest
context: rest
file: rest/Dockerfile

0 comments on commit 0d72b0e

Please sign in to comment.