1
0
Fork 0
mirror of https://github.com/walkxcode/dashboard-icons.git synced 2024-10-06 06:04:09 +02:00
dashboard-icons/.github/workflows/_readme_generator.yml

33 lines
659 B
YAML
Raw Normal View History

name: 🚀 Generates ICONS
2022-08-16 18:56:28 +02:00
on:
push:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
2022-08-16 18:56:28 +02:00
- name: Setup Python
uses: actions/setup-python@v4
2022-08-16 18:56:28 +02:00
with:
python-version: "3.9"
architecture: "x64"
- name: ICONS Generator
2022-08-16 18:56:28 +02:00
run: |-
python _ci.py
cat ICONS.md
2022-08-16 18:56:28 +02:00
- name: Load to GitHub
run: |-
git diff
git config --global user.email "noreply@walkx.fyi"
git config --global user.name "Dashboard Icons Bot"
2022-08-16 18:56:28 +02:00
git add -A
git commit -m "🚀 Generates ICONS" || exit 0
2022-08-16 18:56:28 +02:00
git push