2020-11-27 16:18:22 +05:30
|
|
|
# This workflow will perform a test whenever there
|
|
|
|
# is some change in code done to ensure that the changes
|
|
|
|
# are not buggy and we are getting the desired output.
|
2021-04-12 18:05:25 +05:30
|
|
|
name: Build and Push
|
2021-02-20 13:37:54 -05:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
workflow_dispatch:
|
2021-04-12 18:05:25 +05:30
|
|
|
schedule:
|
|
|
|
- cron: '0 0 * * *' # every day at midnight
|
2021-02-20 13:37:54 -05:00
|
|
|
|
2020-11-27 16:18:22 +05:30
|
|
|
env:
|
|
|
|
IMAGE_REGISTRY: quay.io
|
2021-09-13 10:13:29 -07:00
|
|
|
IMAGE_NAMESPACE: redhat-github-actions
|
2021-09-13 14:14:59 -07:00
|
|
|
IMAGE_NAME: ptr-test
|
2021-02-03 08:05:48 +05:30
|
|
|
IMAGE_TAGS: v1 ${{ github.sha }}
|
|
|
|
MVN_REPO_DIR: ~/.m2/repository
|
2020-11-27 16:18:22 +05:30
|
|
|
|
|
|
|
jobs:
|
2021-02-03 08:05:48 +05:30
|
|
|
build-and-push:
|
|
|
|
name: Build and push image to Quay.io
|
2021-01-07 18:49:38 -05:00
|
|
|
runs-on: ubuntu-20.04
|
2021-09-13 19:50:48 +05:30
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
install_latest: [ true, false ]
|
|
|
|
|
2020-11-27 16:18:22 +05:30
|
|
|
steps:
|
|
|
|
# Checkout push-to-registry action github repository
|
|
|
|
- name: Checkout Push to Registry action
|
|
|
|
uses: actions/checkout@v2
|
2021-02-03 08:05:48 +05:30
|
|
|
|
2021-09-13 19:50:48 +05:30
|
|
|
- name: Install latest podman
|
|
|
|
if: matrix.install_latest
|
|
|
|
run: |
|
|
|
|
bash push-to-registry/.github/install_latest_podman.sh
|
|
|
|
|
2021-02-03 08:05:48 +05:30
|
|
|
# Build image using Buildah action
|
|
|
|
- name: Build Image
|
|
|
|
id: build_image
|
2021-02-09 00:00:15 +05:30
|
|
|
uses: redhat-actions/buildah-build@v2
|
2021-02-03 08:05:48 +05:30
|
|
|
with:
|
|
|
|
image: ${{ env.IMAGE_NAME }}
|
|
|
|
tags: ${{ env.IMAGE_TAGS }}
|
2021-09-13 14:14:59 -07:00
|
|
|
base-image: busybox:latest
|
2021-02-03 08:05:48 +05:30
|
|
|
entrypoint: |
|
2021-09-13 14:14:59 -07:00
|
|
|
bash
|
|
|
|
-c
|
|
|
|
echo 'hello world'
|
|
|
|
oci: true
|
2021-02-20 13:37:54 -05:00
|
|
|
|
2021-02-03 08:05:48 +05:30
|
|
|
# Push the image to Quay.io (Image Registry)
|
2020-11-27 16:18:22 +05:30
|
|
|
- name: Push To Quay
|
2021-09-13 14:14:59 -07:00
|
|
|
uses: ./
|
2021-01-07 18:49:38 -05:00
|
|
|
id: push
|
2020-11-27 16:18:22 +05:30
|
|
|
with:
|
2021-02-03 08:05:48 +05:30
|
|
|
image: ${{ steps.build_image.outputs.image }}
|
|
|
|
tags: ${{ steps.build_image.outputs.tags }}
|
2021-09-13 10:13:29 -07:00
|
|
|
registry: ${{ env.IMAGE_REGISTRY }}/${{ env.IMAGE_NAMESPACE }}
|
2020-11-27 16:18:22 +05:30
|
|
|
username: ${{ secrets.REGISTRY_USER }}
|
|
|
|
password: ${{ secrets.REGISTRY_PASSWORD }}
|
2021-02-08 20:07:42 +05:30
|
|
|
extra-args: |
|
|
|
|
--disable-content-trust
|
2021-02-20 13:37:54 -05:00
|
|
|
|
2021-01-07 18:49:38 -05:00
|
|
|
- name: Echo outputs
|
|
|
|
run: |
|
2021-02-21 16:44:45 -05:00
|
|
|
echo "${{ toJSON(steps.push.outputs) }}"
|