snc-runner-pusher #65
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: snc-runner-pusher | |
on: | |
workflow_run: | |
workflows: snc-runner-builder | |
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: Download snc-runner assets | |
id: download-gh-context-artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: snc-runner | |
run-id: ${{ github.event.workflow_run.id }} | |
github-token: ${{ github.token }} | |
- name: Get snc-runner build informaiton | |
run: | | |
echo "source_event=$(cat snc-runner-build-event)" >> "$GITHUB_ENV" | |
echo "image=$(cat snc-runner-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 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 snc-runner | |
run: | | |
podman load -i snc-runner.tar | |
podman push ${{ env.image }} | |
- name: Download snc-runner-tkn assets | |
uses: actions/download-artifact@v4 | |
with: | |
name: snc-runner-tkn | |
run-id: ${{ github.event.workflow_run.id }} | |
github-token: ${{ github.token }} | |
- name: Push snc-runner-tkn | |
env: | |
TKN_VERSION: '0.37.0' | |
run: | | |
curl -LO "https://github.com/tektoncd/cli/releases/download/v${TKN_VERSION}/tkn_${TKN_VERSION}_Linux_x86_64.tar.gz" | |
tar xvzf "tkn_${TKN_VERSION}_Linux_x86_64.tar.gz" tkn | |
./tkn bundle push ${{ env.image }}-tkn \ | |
-f task.yaml \ | |
-f pipeline.yaml |