oci-push #94
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: oci-push | |
on: | |
workflow_run: | |
workflows: | |
- oci-builds | |
types: | |
- completed | |
jobs: | |
push: | |
name: push | |
if: | | |
github.event.workflow_run.conclusion == 'success' | |
runs-on: ubuntu-24.04 | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Download mapt assets | |
uses: actions/download-artifact@v4 | |
with: | |
name: mapt | |
run-id: ${{ github.event.workflow_run.id }} | |
github-token: ${{ github.token }} | |
- name: Get mapt build informaiton | |
run: echo "source_event=$(cat mapt-event)" >> "$GITHUB_ENV" | |
- name: Get mapt image name | |
if: ${{ env.source_event == 'pull_request' }} | |
run: echo "IMG=$(cat mapt-image)" >> "$GITHUB_ENV" | |
- name: Log in to ghcr.io | |
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 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 mapt | |
run: | | |
make oci-load | |
make oci-push | |