update openshift template and instructions #149
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 Image | |
on: | |
push: | |
branches: ['main', 'dev'] | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: ${{ github.repository }} | |
jobs: | |
build-and-push-image: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
# Part 1: Build and push the python scripts image | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta-python-scripts | |
uses: docker/metadata-action@v5 | |
with: | |
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-python-scripts | |
- name: Buildah Action - python-scripts | |
id: build_python-scripts | |
uses: redhat-actions/buildah-build@v2 | |
with: | |
image: ${{ env.IMAGE_NAME }}python-scripts | |
tags: ${{ steps.meta-python-scripts.outputs.tags }} | |
oci: true | |
containerfiles: | | |
./Dockerfile | |
- name: Push python-scripts Image To GHCR | |
uses: redhat-actions/push-to-registry@v2 | |
with: | |
tags: ${{ steps.build_python-scripts.outputs.tags }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.ACCESS_TOKEN }} | |
# Part 2: Build and push the pygeoapi image | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta-pygeoapi | |
uses: docker/metadata-action@v5 | |
with: | |
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-pygeoapi | |
- name: Buildah Action - pygeoapi | |
id: build_pygeoapi | |
uses: redhat-actions/buildah-build@v2 | |
with: | |
image: ${{ env.IMAGE_NAME }}-pygeoapi | |
tags: ${{ steps.meta-pygeoapi.outputs.tags }} | |
oci: true | |
containerfiles: | | |
./pygeoapi/Dockerfile | |
- name: Push pygeoapi Image To GHCR | |
uses: redhat-actions/push-to-registry@v2 | |
with: | |
tags: ${{ steps.build_pygeoapi.outputs.tags }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.ACCESS_TOKEN }} |