Skip to content

ci(release): move publish to post-release step #3

ci(release): move publish to post-release step

ci(release): move publish to post-release step #3

Workflow file for this run

name: post-release
on:
push:
tags:
- v*.*.*
branches:
- ci/**
permissions:
packages: write
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Push Test to OCI registry
if: ${{ startsWith(github.ref, 'refs/heads/') }}
uses: appany/[email protected]
with:
name: runo-helm
repository: aljoshare
tag: ${{ github.sha }}
path: runo
registry: ghcr.io
registry_username: ${{ github.actor }}
registry_password: ${{ secrets.GITHUB_TOKEN }}
- name: Push Release to OCI registry
if: ${{ startsWith(github.ref, 'refs/tags/') }}
uses: appany/[email protected]
with:
name: runo-helm
repository: aljoshare
tag: ${{ github.ref_name }}
path: runo
registry: ghcr.io
registry_username: ${{ github.actor }}
registry_password: ${{ secrets.GITHUB_TOKEN }}