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-10-04 18:42:43 +05:30
|
|
|
name: Push to GHCR
|
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
|
2020-11-27 16:18:22 +05:30
|
|
|
env:
|
2021-10-04 18:42:43 +05:30
|
|
|
IMAGE_NAME: ptr-test
|
|
|
|
IMAGE_TAGS: v1 ${{ github.sha }}
|
|
|
|
IMAGE_REGISTRY: ghcr.io/${{ github.repository_owner }}
|
|
|
|
REGISTRY_USER: ${{ github.actor }}
|
|
|
|
REGISTRY_PASSWORD: ${{ github.token }}
|
2020-11-27 16:18:22 +05:30
|
|
|
|
|
|
|
jobs:
|
2021-10-04 18:42:43 +05:30
|
|
|
push-ghcr:
|
|
|
|
name: Build and push image
|
2024-03-05 14:48:07 +01:00
|
|
|
runs-on: ubuntu-22.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
|
2024-03-05 14:48:07 +01:00
|
|
|
uses: actions/checkout@v4
|
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: |
|
2021-09-13 14:18:09 -07:00
|
|
|
bash .github/install_latest_podman.sh
|
2021-09-13 19:50:48 +05:30
|
|
|
|
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-10-04 18:42:43 +05:30
|
|
|
# Push the image to GHCR (Image Registry)
|
|
|
|
- name: Push To GHCR
|
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-10-04 18:42:43 +05:30
|
|
|
registry: ${{ env.IMAGE_REGISTRY }}
|
|
|
|
username: ${{ env.REGISTRY_USER }}
|
|
|
|
password: ${{ env.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) }}"
|