Added github workflow #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Publish Image | |
on: [push] | |
jobs: | |
build: | |
name: Build and publish image | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/checkout@v4 | |
with: | |
repository: farting-lizards/expenses_server_fastapi | |
- uses: actions/checkout@v4 | |
with: | |
repository: farting-lizards/expenses-react | |
- name: Build code | |
id: build-code | |
run: | | |
./build.sh --skip-image-build expenses_server_fastapi expenses_react | |
- name: Get current date | |
id: date | |
run: echo "::set-output name=date::$(date +'%Y%m%d%H%M%S')" | |
- name: Build Image | |
id: build-image | |
uses: redhat-actions/buildah-build@v2 | |
with: | |
image: expenses | |
tags: latest ${{ github.sha }} ${{ steps.date.outputs.date }} | |
containerfiles: | | |
./Dockerfile.prod | |
- name: Push To quay.io | |
id: push-to-quay | |
uses: redhat-actions/push-to-registry@v2 | |
with: | |
image: ${{ steps.build-image.outputs.image }} | |
tags: ${{ steps.build-image.outputs.tags }} | |
registry: quay.io/farting_lizards | |
username: ${{ secrets.QUAY_USER }} | |
password: ${{ secrets.QUAY_PASSWORD }} | |
- name: Print image url | |
run: | | |
echo "Image pushed to ${{ steps.push-to-quay.outputs.registry-paths }}" |