Skip to content

Release 1.0.3

Release 1.0.3 #17

Workflow file for this run

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