Small config file
Added a small config file with some variables
This commit is contained in:
parent
82625c9d73
commit
edc3e55ead
6 changed files with 43 additions and 6 deletions
22
.gitea/workflows/buildah-ci.yml
Normal file
22
.gitea/workflows/buildah-ci.yml
Normal 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 }}"
|
Loading…
Add table
Add a link
Reference in a new issue