feat: bump runo to 0.2.12 #29
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: check if runo release is available | |
on: pull_request | |
jobs: | |
check-runo-release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Check if Release of Runo exists | |
run: curl --output /dev/null --silent --fail https://github.com/aljoshare/runo/releases/tag/v$(cat runo/Chart.yaml | grep "appVersion:" | cut -d':' -f2 | xargs) |