mirror of
https://github.com/walkxcode/dashboard-icons.git
synced 2024-11-01 09:31:14 +01:00
50c4b5ee2b
Co-authored-by: Dashboard Icons Bot <noreply@walkx.fyi>
32 lines
703 B
YAML
32 lines
703 B
YAML
name: 🚀 Generates ICONS
|
|
|
|
on:
|
|
push:
|
|
workflow_dispatch:
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: "3.9"
|
|
architecture: "x64"
|
|
|
|
- name: ICONS Generator
|
|
run: |-
|
|
python config/ci.py
|
|
cat ICONS.md
|
|
|
|
- name: Load to GitHub
|
|
run: |-
|
|
git diff
|
|
git config --global user.email "noreply@walkx.fyi"
|
|
git config --global user.name "Dashboard Icons Bot"
|
|
git add -A
|
|
git commit -m ":rocket: Generates ICONS" || exit 0
|
|
git push
|