Skip to content

Fix: workflows

Fix: workflows #10

name: Update README
on:
push:
branches:
- develop-yml
jobs:
update-readme:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install Dependencies
run: npm install js-yaml
- name: Run Update Script
run: node .github/workflows/convert-yml-to-md.js
- name: Commit README
run: |
git add README.md
git commit -m "Docs: README.md"
if: always()