Release 1.0.3 #17
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: Update README | |
on: | |
workflow_dispatch: | |
#push: | |
# branches: ["develop"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
version: | |
runs-on: ubuntu-latest | |
name: Update Versions | |
if: github.repository == 'mozebaltyk/rkub' | |
permissions: | |
actions: write | |
checks: write | |
contents: write | |
steps: | |
# Checkout on branch where pull request | |
- name: Which branch? | |
shell: bash | |
run: | | |
echo "${{ github.head_ref || github.ref_name }}" | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref || github.ref_name }} | |
- name: Update Readme and changelog | |
uses: ./.github/actions/update-readme |