Skip to content

Bump actions/checkout from 3 to 4 #9

Bump actions/checkout from 3 to 4

Bump actions/checkout from 3 to 4 #9

name: Build redhat-csp-download
on:
push:
paths:
- .github/workflows/redhat-csp-download-build.yaml
- redhat-csp-download/**
jobs:
build:
env:
context: redhat-csp-download
image_name: redhat-csp-download
branch_name: ${{ github.head_ref || github.ref_name }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Get image tags
id: image_tags
run: |
echo -n ::set-output name=IMAGE_TAGS::
TAGS=('latest')
TAGS+=($(grep "LABEL version" redhat-csp-download/Dockerfile_build | cut -d '"' -f 2))
echo "${TAGS[*]}"
- name: Build image
id: build_image
uses: redhat-actions/buildah-build@v2
with:
context: ${{ env.context }}
dockerfiles: |
./${{ env.context }}/Dockerfile_build
image: ${{ env.image_name }}
oci: true
tags: "${{ steps.image_tags.outputs.IMAGE_TAGS }}"
- name: Push to ghcr.io
if: ${{ env.branch_name == 'master' }} # Stops push running when dependabot creates a PR, which fails due to token
uses: redhat-actions/push-to-registry@v2
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 }}