Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding build and push workflow #80

Merged
merged 1 commit into from
Jan 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions .github/workflows/build-push.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Build and Push Image
on: [ push ]

jobs:
build:
name: Build and push image
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2

- name: Build Frontend Image
id: build-front
uses: redhat-actions/buildah-build@v2
with:
image: frontend
context: frontend
tags: latest ${{ github.sha }}
containerfiles: |
./frontend/frontend.containerfile

- name: Push frontend image to quay.io
id: push-front-to-quay
uses: redhat-actions/push-to-registry@v2
with:
image: ${{ steps.build-front.outputs.image }}
tags: ${{ steps.build-front.outputs.tags }}
registry: quay.io/cloud-bulldozer
username: ${{ secrets.QUAY_USER }}
password: ${{ secrets.QUAY_TOKEN }}

- name: Build Backend Image
id: build-back
uses: redhat-actions/buildah-build@v2
with:
image: backend
context: backend
tags: latest ${{ github.sha }}
containerfiles: |
./backend/backend.containerfile

- name: Push backend image to quay.io
id: push-back-to-quay
uses: redhat-actions/push-to-registry@v2
with:
image: ${{ steps.build-back.outputs.image }}
tags: ${{ steps.build-back.outputs.tags }}
registry: quay.io/cloud-bulldozer
username: ${{ secrets.QUAY_USER }}
password: ${{ secrets.QUAY_TOKEN }}