test workflow #14
Workflow file for this run
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-oci-builder | |
on: | |
push: | |
tags: [ '*' ] | |
paths: | |
- '.github\/workflows\/snc-runner\/release-info' | |
pull_request: | |
branches: [ main ] | |
paths: | |
- 'snc-runner/**' | |
- '.github\/workflows\/snc-runner*' | |
jobs: | |
build: | |
name: build | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Build image for on pr event | |
if: ${{ github.event_name == 'pull_request' }} | |
env: | |
# SNC_RUNNER: ghcr.io/crc-org/ci-snc-runner | |
SNC_RUNNER: ghcr.io/adrianriobo/ci-snc-runner | |
SNC_RUNNER_V: pr-${{ github.event.number }} | |
run: | | |
make snc-runner-oci-build | |
SNC_RUNNER_SAVE=snc-runner make snc-runner-oci-save | |
echo "image=${SNC_RUNNER}" >> "$GITHUB_ENV" | |
echo "tag=${SNC_RUNNER_V}" >> "$GITHUB_ENV" | |
- name: Build image on push (release) event | |
if: ${{ github.event_name == 'push' }} | |
run: | | |
make snc-runner-oci-build | |
SNC_RUNNER_SAVE=snc-runner make snc-runner-oci-save | |
# Get values from release-info | |
echo "image=$(sed -n 1p snc-runner/release-info)" >> "$GITHUB_ENV" | |
echo "tag=v$(sed -n 2p snc-runner/release-info)" >> "$GITHUB_ENV" | |
- name: Create image metadata | |
run: | | |
echo ${{ env.image }}:${{ env.tag }} > snc-runner-image | |
echo ${{ github.event_name }} > snc-runner-build-event | |
- name: Upload snc-runner | |
uses: actions/upload-artifact@v4 | |
with: | |
name: snc-runner | |
path: snc-runner* | |