crc-builder-pusher #5
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: crc-builder-pusher | |
on: | |
workflow_run: | |
workflows: crc-builder-builder | |
types: | |
- completed | |
jobs: | |
push: | |
name: push | |
runs-on: ubuntu-24.04 | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Download crc-builder assets | |
id: download-gh-context-artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: crc-builder | |
run-id: ${{ github.event.workflow_run.id }} | |
github-token: ${{ github.token }} | |
- name: Get crc-builder build informaiton | |
run: | | |
echo "source_event=$(cat crc-builder-build-event)" >> "$GITHUB_ENV" | |
echo "image=$(cat crc-builder-image)" >> "$GITHUB_ENV" | |
- name: Log in to ghcr.io for PR | |
if: ${{ env.source_event == 'pull_request' }} | |
uses: redhat-actions/podman-login@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Log in to ghcr.io | |
if: ${{ env.source_event == 'push' }} | |
uses: redhat-actions/podman-login@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Log in quay.io | |
if: ${{ env.source_event == 'push' }} | |
uses: redhat-actions/podman-login@v1 | |
with: | |
registry: quay.io | |
username: ${{ secrets.QUAY_IO_USERNAME }} | |
password: ${{ secrets.QUAY_IO_PASSWORD }} | |
- name: Push crc-builder | |
run: | | |
make snc-runner-oci-load | |
IMAGE=${{ env.image }} make snc-runner-oci-push |