Bump redhat-cop/github-actions from 4.2 to 4.3 #955
Workflow file for this run
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: ubi8-asciidoctor-publish | |
on: | |
schedule: | |
- cron: '0 1 * * *' # everyday at 1am | |
push: | |
paths: | |
- utilities/ubi8-asciidoctor/version.json | |
- .github/workflows/ubi8-asciidoctor-publish.yaml | |
# Declare default permissions as read only. | |
permissions: read-all | |
jobs: | |
build: | |
env: | |
context: utilities/ubi8-asciidoctor | |
image_name: ubi8-asciidoctor | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- name: Get image tags | |
id: image_tags | |
uses: redhat-cop/github-actions/get-image-version@1a584131f8a335296e866d1fb0988870ca83aefb # v4 | |
with: | |
IMAGE_CONTEXT_DIR: ${{ env.context }} | |
- name: Install qemu dependency | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y qemu-user-static | |
- name: Build image | |
id: build_image | |
uses: redhat-actions/buildah-build@7a95fa7ee0f02d552a32753e7414641a04307056 # v2 | |
with: | |
context: ${{ env.context }} | |
dockerfiles: | | |
./${{ env.context }}/Dockerfile | |
image: ${{ env.image_name }} | |
platforms: linux/amd64,linux/arm64 | |
tags: "${{ steps.image_tags.outputs.IMAGE_TAGS }}" | |
- name: Push to ghcr.io | |
uses: redhat-actions/push-to-registry@5ed88d269cf581ea9ef6dd6806d01562096bee9c # v2 | |
if: ${{ !contains(github.ref, 'renovate') }} | |
with: | |
image: ${{ steps.build_image.outputs.image }} | |
registry: ghcr.io/${{ github.repository }} | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
tags: ${{ steps.build_image.outputs.tags }} | |
- name: Push to Quay | |
env: | |
REGISTRY_URI: ${{ secrets.REGISTRY_URI }} | |
if: ${{ env.REGISTRY_URI != '' && !contains(github.ref, 'renovate') }} | |
uses: redhat-actions/push-to-registry@5ed88d269cf581ea9ef6dd6806d01562096bee9c # v2 | |
with: | |
image: ${{ steps.build_image.outputs.image }} | |
registry: ${{ secrets.REGISTRY_URI }}/${{ secrets.REGISTRY_REPOSITORY }} | |
username: ${{ secrets.REGISTRY_USERNAME }} | |
password: ${{ secrets.REGISTRY_PASSWORD }} | |
tags: ${{ steps.build_image.outputs.tags }} |