Small config file

Added a small config file with some variables
This commit is contained in:
Michael Rodin 2023-10-19 19:39:54 +02:00
parent 82625c9d73
commit edc3e55ead
6 changed files with 43 additions and 6 deletions

View file

@ -0,0 +1,22 @@
name: Build and Push Image with Buildah
on: [ push ]
jobs:
build:
name: Build and push image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build Image
id: build-image
uses: redhat-actions/buildah-build@v2
with:
image: my-app
tags: latest ${{ github.sha }}
containerfiles: |
./Containerfile
- name: Print image url
run: echo "Image pushed to ${{ steps.push-to-quay.outputs.registry-paths }}"