Skip to content

chore(deps): update redhat-cop/github-actions digest to e472907 (#820) #39

chore(deps): update redhat-cop/github-actions digest to e472907 (#820)

chore(deps): update redhat-cop/github-actions digest to e472907 (#820) #39

name: jenkins-agent-golang-publish
on:
push:
paths:
- jenkins-agents/jenkins-agent-golang/version.json
- .github/workflows/jenkins-agent-golang-publish.yaml
# Declare default permissions as read only.
permissions: read-all
jobs:
build:
env:
context: jenkins-agents/jenkins-agent-golang
image_name: jenkins-agent-golang
runs-on: ubuntu-latest
permissions:
packages: write
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
- name: Get image tags
id: image_tags
uses: redhat-cop/github-actions/get-image-version@e4729075dcd3f34946b80df6b1bfb952b9fee166 # 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 }}