feat(ci): remove meta folders

This commit is contained in:
rektdeckard
2024-12-29 21:29:19 -07:00
committed by Tobias Fried
parent e28695fcd2
commit 6d2358ffe7
3 changed files with 4 additions and 3 deletions

View File

@@ -5,6 +5,7 @@ on:
paths:
- 'README.md'
- '.github/FUNDING.yaml'
- '.github/logo.png'
branches:
- master
workflow_dispatch: # Allows manual triggering

View File

@@ -1,9 +1,9 @@
# Phosphor Icons
<!-- BEGIN_LOGO -->
<img src="/.github/logo.png" width="128" align="right" />
<!-- END_LOGO -->
<!-- BEGIN_OVERVIEW -->
Phosphor is a flexible icon family for interfaces, diagrams, presentations — whatever, really.

View File

@@ -8,7 +8,7 @@ const LOGO_PATH = ".github/logo.png";
const SYNC_SECTIONS = ["LOGO", "OVERVIEW", "LINKS"];
const SYNC_FILES: Array<string | Array<string>> = [
[FUNDING_PATH, ".github/FUNDING.yml"],
LOGO_PATH,
[LOGO_PATH, "meta"],
]; // These files will be replaced in the target repository
(function main() {
@@ -40,7 +40,7 @@ const SYNC_FILES: Array<string | Array<string>> = [
for (const alias of file) {
const targetPath = path.resolve(__dirname, `../../${targetRepo}/${alias}`);
if (fs.existsSync(targetPath)) {
fs.rmSync(targetPath);
fs.rmSync(targetPath, { recursive: true });
}
}
}