Skip to content

Add support to generate OCI compatible output for orabos #62

Add support to generate OCI compatible output for orabos

Add support to generate OCI compatible output for orabos #62

Workflow file for this run

name: dev
on:
push:
paths-ignore:
- "**/README.md"
- "docs/**"
pull_request:
paths-ignore:
- "**/README.md"
- "docs/**"
jobs:
set_version:
runs-on: ubuntu-latest
outputs:
VERSION: ${{ steps.version.outputs.VERSION }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: "recursive"
- name: use VERSION file to support dev build on rel-branch
id: version
run: echo "VERSION=$(cat VERSION)" >> $GITHUB_OUTPUT
build:
needs: [set_version]
uses: ./.github/workflows/build.yml
with:
version: ${{ needs.set_version.outputs.VERSION }}
arch: '["amd64"]'