[#587] Build OCI images for release tags
All checks were successful
/ DCO (pull_request) Successful in 9m31s
/ Vulncheck (pull_request) Successful in 9m51s
/ Builds (pull_request) Successful in 10m24s
/ OCI image (pull_request) Successful in 10m46s
/ Lint (pull_request) Successful in 11m7s
/ Tests (pull_request) Successful in 10m33s

OCI images will be built often (on each PR) to make sure our recipe
doesn't get rusty.
Publishing to the registry will happen only for `v*` tags.

Signed-off-by: Vitaliy Potyarkin <v.potyarkin@yadro.com>
This commit is contained in:
Vitaliy Potyarkin 2024-12-18 14:06:56 +03:00 committed by Vitaliy Potyarkin
parent 16eb289929
commit 642fc27d32

View file

@ -0,0 +1,27 @@
on:
pull_request:
push:
workflow_dispatch:
jobs:
image:
name: OCI image
runs-on: docker
container: git.frostfs.info/truecloudlab/env:oci-image-builder-bookworm
steps:
- name: Clone git repo
uses: actions/checkout@v3
- name: Build OCI image
run: make image
- name: Push image to OCI registry
run: |
echo "$REGISTRY_PASSWORD" \
| docker login --username truecloudlab --password-stdin git.frostfs.info
make image-push
if: >-
startsWith(github.ref, 'refs/tags/v') &&
(github.event_name == 'workflow_dispatch' || github.event_name == 'push')
env:
REGISTRY_PASSWORD: ${{secrets.FORGEJO_OCI_REGISTRY_PUSH_TOKEN}}