chore(deps): update actions/checkout digest to a5ac7e5 #125
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: tekton-task-images-helm-publish | |
on: | |
push: | |
paths: | |
- tekton-task-images/helm/VERSION | |
- .github/workflows/tekton-task-images-helm-publish.yaml | |
# Declare default permissions as read only. | |
permissions: read-all | |
jobs: | |
build: | |
env: | |
context: tekton-task-images/helm | |
image_name: tekton-task-helm | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
steps: | |
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4 | |
- name: Convert VERSION to version.json | |
run: | | |
version=$(sed -n '2p' ${{ env.context }}/VERSION | cut -d"=" -f2) | |
jq -c --null-input --arg version "$version" '{ "version": $version }' > ${{ env.context }}/version.json | |
- name: Get image tags | |
id: image_tags | |
uses: redhat-cop/github-actions/get-image-version@11f2ce27643eb7c76ac3623cb99d9b08be30d762 # v4 | |
with: | |
IMAGE_CONTEXT_DIR: ${{ env.context }} | |
- 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 }} | |
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 }} |