mirror of
https://github.com/walkxcode/dashboard-icons.git
synced 2024-12-29 05:02:28 +01:00
🚚 Combine workflow into one
This commit is contained in:
parent
7a534ee2a1
commit
937259ecf5
6 changed files with 100 additions and 125 deletions
2
.github/workflows/compress_pngs.yml
vendored
2
.github/workflows/compress_pngs.yml
vendored
|
@ -1,4 +1,4 @@
|
||||||
name: Compress PNGs
|
name: Compress PNGs 🗜️
|
||||||
|
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
|
|
43
.github/workflows/convert_svg_assets.yml
vendored
43
.github/workflows/convert_svg_assets.yml
vendored
|
@ -1,43 +0,0 @@
|
||||||
name: Convert SVG Assets
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
- dev
|
|
||||||
paths:
|
|
||||||
- "svg/**"
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
convert_assets:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout Repository
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
ref: ${{ github.ref_name }}
|
|
||||||
|
|
||||||
- name: Set Up Python
|
|
||||||
uses: actions/setup-python@v4
|
|
||||||
with:
|
|
||||||
python-version: "3.9"
|
|
||||||
|
|
||||||
- name: Install Dependencies
|
|
||||||
run: |
|
|
||||||
pip install cairosvg pillow
|
|
||||||
|
|
||||||
- name: Run SVG to PNG and WEBP Conversion
|
|
||||||
run: python scripts/convert_svg_assets.py
|
|
||||||
|
|
||||||
- name: Commit and Push Changes
|
|
||||||
run: |
|
|
||||||
git config --global user.email "noreply@lammers.media"
|
|
||||||
git config --global user.name "Dashboard Icons Bot"
|
|
||||||
git add png/ webp/
|
|
||||||
git commit -m ":recycle: Convert SVG assets to PNG and WEBP" || exit 0
|
|
||||||
git pull --rebase origin ${{ github.ref_name }}
|
|
||||||
git push origin HEAD:${{ github.ref_name }}
|
|
40
.github/workflows/generate_file_tree.yml
vendored
40
.github/workflows/generate_file_tree.yml
vendored
|
@ -1,40 +0,0 @@
|
||||||
name: Generate File Tree
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_run:
|
|
||||||
workflows: ["Convert SVG Assets"]
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
- dev
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
generate_file_tree:
|
|
||||||
if: ${{ github.event.workflow_run.conclusion == 'success' }}
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout Repository
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
ref: ${{ github.event.workflow_run.head_branch }}
|
|
||||||
|
|
||||||
- name: Set Up Python
|
|
||||||
uses: actions/setup-python@v4
|
|
||||||
with:
|
|
||||||
python-version: "3.9"
|
|
||||||
|
|
||||||
- name: Generate File Tree
|
|
||||||
run: python scripts/generate_folder_tree.py svg png webp
|
|
||||||
|
|
||||||
- name: Commit and Push Changes
|
|
||||||
run: |
|
|
||||||
git config --global user.email "noreply@lammers.media"
|
|
||||||
git config --global user.name "Dashboard Icons Bot"
|
|
||||||
git add tree.json
|
|
||||||
git commit -m ":construction_worker: Generate file tree" || exit 0
|
|
||||||
git pull --rebase origin ${{ github.event.workflow_run.head_branch }}
|
|
||||||
git push origin HEAD:${{ github.event.workflow_run.head_branch }}
|
|
40
.github/workflows/generate_icons_page.yml
vendored
40
.github/workflows/generate_icons_page.yml
vendored
|
@ -1,40 +0,0 @@
|
||||||
name: Generate Icons Page
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_run:
|
|
||||||
workflows: ["Convert SVG Assets"]
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
- dev
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build_icons_page:
|
|
||||||
if: ${{ github.event.workflow_run.conclusion == 'success' }}
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout Repository
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
ref: ${{ github.event.workflow_run.head_branch }}
|
|
||||||
|
|
||||||
- name: Set Up Python
|
|
||||||
uses: actions/setup-python@v4
|
|
||||||
with:
|
|
||||||
python-version: "3.9"
|
|
||||||
|
|
||||||
- name: Generate ICONS.md
|
|
||||||
run: python scripts/generate_icons_page.py
|
|
||||||
|
|
||||||
- name: Commit and Push Changes
|
|
||||||
run: |
|
|
||||||
git config --global user.email "noreply@lammers.media"
|
|
||||||
git config --global user.name "Dashboard Icons Bot"
|
|
||||||
git add ICONS.md
|
|
||||||
git commit -m ":construction_worker: Generate ICONS.md" || exit 0
|
|
||||||
git pull --rebase origin ${{ github.event.workflow_run.head_branch }}
|
|
||||||
git push origin HEAD:${{ github.event.workflow_run.head_branch }}
|
|
98
.github/workflows/update_icons_and_resources.yml
vendored
Normal file
98
.github/workflows/update_icons_and_resources.yml
vendored
Normal file
|
@ -0,0 +1,98 @@
|
||||||
|
name: "Update Icons and Resources ✨"
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
- dev
|
||||||
|
paths:
|
||||||
|
- "svg/**"
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
convert_assets:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
steps:
|
||||||
|
- name: Checkout Repository 🛎️
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
ref: ${{ github.ref_name }}
|
||||||
|
|
||||||
|
- name: Set Up Python 🐍
|
||||||
|
uses: actions/setup-python@v4
|
||||||
|
with:
|
||||||
|
python-version: "3.9"
|
||||||
|
|
||||||
|
- name: Install Dependencies 📦
|
||||||
|
run: |
|
||||||
|
pip install cairosvg pillow
|
||||||
|
|
||||||
|
- name: Run SVG to PNG and WEBP Conversion 🎨
|
||||||
|
run: python scripts/convert_svg_assets.py
|
||||||
|
|
||||||
|
- name: Commit and Push Changes 📤
|
||||||
|
run: |
|
||||||
|
git config --global user.email "noreply@lammers.media"
|
||||||
|
git config --global user.name "Dashboard Icons Bot"
|
||||||
|
git add png/ webp/
|
||||||
|
git commit -m ":counterclockwise_arrows: Convert SVG assets to PNG and WEBP" || exit 0
|
||||||
|
git pull --rebase origin ${{ github.ref_name }}
|
||||||
|
git push origin HEAD:${{ github.ref_name }}
|
||||||
|
|
||||||
|
generate_file_tree:
|
||||||
|
needs: convert_assets
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
steps:
|
||||||
|
- name: Checkout Repository 🛎️
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
ref: ${{ github.ref_name }}
|
||||||
|
|
||||||
|
- name: Set Up Python 🐍
|
||||||
|
uses: actions/setup-python@v4
|
||||||
|
with:
|
||||||
|
python-version: "3.9"
|
||||||
|
|
||||||
|
- name: Generate File Tree 🌳
|
||||||
|
run: python scripts/generate_folder_tree.py svg png webp
|
||||||
|
|
||||||
|
- name: Commit and Push Changes 📤
|
||||||
|
run: |
|
||||||
|
git config --global user.email "noreply@lammers.media"
|
||||||
|
git config --global user.name "Dashboard Icons Bot"
|
||||||
|
git add tree.json
|
||||||
|
git commit -m ":construction_worker: Generate file tree" || exit 0
|
||||||
|
git pull --rebase origin ${{ github.ref_name }}
|
||||||
|
git push origin HEAD:${{ github.ref_name }}
|
||||||
|
|
||||||
|
generate_icons_page:
|
||||||
|
needs: generate_file_tree
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
steps:
|
||||||
|
- name: Checkout Repository 🛎️
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
ref: ${{ github.ref_name }}
|
||||||
|
|
||||||
|
- name: Set Up Python 🐍
|
||||||
|
uses: actions/setup-python@v4
|
||||||
|
with:
|
||||||
|
python-version: "3.9"
|
||||||
|
|
||||||
|
- name: Generate ICONS.md 🚀
|
||||||
|
run: python scripts/generate_icons_page.py
|
||||||
|
|
||||||
|
- name: Commit and Push Changes 📤
|
||||||
|
run: |
|
||||||
|
git config --global user.email "noreply@lammers.media"
|
||||||
|
git config --global user.name "Dashboard Icons Bot"
|
||||||
|
git add ICONS.md
|
||||||
|
git commit -m ":construction_worker: Generate ICONS.md" || exit 0
|
||||||
|
git pull --rebase origin ${{ github.ref_name }}
|
||||||
|
git push origin HEAD:${{ github.ref_name }}
|
|
@ -1,4 +1,4 @@
|
||||||
name: Validate and Preview Icons
|
name: Validate and Preview Icons ✅
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
|
|
Loading…
Reference in a new issue