mirror of
https://github.com/walkxcode/dashboard-icons.git
synced 2025-01-26 01:45:02 +01:00
💚 Fixes dev runs
This commit is contained in:
parent
04f6e8feb0
commit
3cd1a7cb41
8
.github/workflows/compress_pngs.yml
vendored
8
.github/workflows/compress_pngs.yml
vendored
@ -12,10 +12,14 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
compress_pngs:
|
compress_pngs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repository
|
- name: Checkout Repository
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
ref: ${{ github.ref_name }}
|
||||||
|
|
||||||
- name: Install Dependencies
|
- name: Install Dependencies
|
||||||
run: |
|
run: |
|
||||||
@ -33,5 +37,5 @@ jobs:
|
|||||||
git config --global user.name "Dashboard Icons Bot"
|
git config --global user.name "Dashboard Icons Bot"
|
||||||
git add png/
|
git add png/
|
||||||
git commit -m ":compression: Compressed PNGs" || exit 0
|
git commit -m ":compression: Compressed PNGs" || exit 0
|
||||||
git pull --rebase
|
git pull --rebase origin ${{ github.ref_name }}
|
||||||
git push
|
git push origin HEAD:${{ github.ref_name }}
|
||||||
|
11
.github/workflows/convert_svg_assets.yml
vendored
11
.github/workflows/convert_svg_assets.yml
vendored
@ -1,4 +1,4 @@
|
|||||||
name: Convert SVG Assets 🔄
|
name: Convert SVG Assets ♻️
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
@ -10,10 +10,14 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
convert_assets:
|
convert_assets:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repository
|
- name: Checkout Repository
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
ref: ${{ github.ref_name }}
|
||||||
|
|
||||||
- name: Set Up Python
|
- name: Set Up Python
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
@ -32,5 +36,6 @@ jobs:
|
|||||||
git config --global user.email "noreply@lammers.media"
|
git config --global user.email "noreply@lammers.media"
|
||||||
git config --global user.name "Dashboard Icons Bot"
|
git config --global user.name "Dashboard Icons Bot"
|
||||||
git add png/ webp/
|
git add png/ webp/
|
||||||
git commit -m ":counterclockwise_arrows: Convert SVG assets to PNG and WEBP" || exit 0
|
git commit -m ":recycle: Convert SVG assets to PNG and WEBP" || exit 0
|
||||||
git push
|
git pull --rebase origin ${{ github.ref_name }}
|
||||||
|
git push origin HEAD:${{ github.ref_name }}
|
||||||
|
7
.github/workflows/generate_file_tree.yml
vendored
7
.github/workflows/generate_file_tree.yml
vendored
@ -10,10 +10,14 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
generate_file_tree:
|
generate_file_tree:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repository
|
- name: Checkout Repository
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
ref: ${{ github.ref_name }}
|
||||||
|
|
||||||
- name: Set Up Python
|
- name: Set Up Python
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
@ -29,4 +33,5 @@ jobs:
|
|||||||
git config --global user.name "Dashboard Icons Bot"
|
git config --global user.name "Dashboard Icons Bot"
|
||||||
git add ../tree.json
|
git add ../tree.json
|
||||||
git commit -m ":construction_worker: Generate file tree" || exit 0
|
git commit -m ":construction_worker: Generate file tree" || exit 0
|
||||||
git push
|
git pull --rebase origin ${{ github.ref_name }}
|
||||||
|
git push origin HEAD:${{ github.ref_name }}
|
||||||
|
7
.github/workflows/generate_icons_page.yml
vendored
7
.github/workflows/generate_icons_page.yml
vendored
@ -10,10 +10,14 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
build_icons_page:
|
build_icons_page:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repository
|
- name: Checkout Repository
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
ref: ${{ github.ref_name }}
|
||||||
|
|
||||||
- name: Set Up Python
|
- name: Set Up Python
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
@ -29,4 +33,5 @@ jobs:
|
|||||||
git config --global user.name "Dashboard Icons Bot"
|
git config --global user.name "Dashboard Icons Bot"
|
||||||
git add ICONS.md
|
git add ICONS.md
|
||||||
git commit -m ":construction_worker: Generate ICONS.md" || exit 0
|
git commit -m ":construction_worker: Generate ICONS.md" || exit 0
|
||||||
git push
|
git pull --rebase origin ${{ github.ref_name }}
|
||||||
|
git push origin HEAD:${{ github.ref_name }}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user