diff --git a/.github/workflows/on-release.yml b/.github/workflows/on-release.yml index 045fc620..c5a329d5 100644 --- a/.github/workflows/on-release.yml +++ b/.github/workflows/on-release.yml @@ -1,10 +1,10 @@ name: CI - On Release on: - workflow_dispatch: push: tags: - - "zeta-icons-v[0-9]+.[0-9]+.[0-9]+*" + - "*" + workflow_dispatch: jobs: publish: diff --git a/.github/workflows/update_zeta_flutter.yml b/.github/workflows/update_zeta_flutter.yml index f765189e..f507e13e 100644 --- a/.github/workflows/update_zeta_flutter.yml +++ b/.github/workflows/update_zeta_flutter.yml @@ -17,6 +17,6 @@ jobs: with: repo: ZebraDevs/zeta_flutter branch: "update-zeta-icons" - source_dir: "./outputs/dart/." + source_dir: "./outputs/flutter/." destination_dir: "lib/generated/icons" commit_msg: "Update icons" diff --git a/index.ts b/index.ts index 5ce5f0b8..01d4ce21 100644 --- a/index.ts +++ b/index.ts @@ -1,10 +1,10 @@ import iconManifest from "./outputs/icon-manifest.json"; import { type IconManifest } from "./scripts/types/customTypes.js"; -export { ZetaIconNameList } from "./outputs/definitions/icon-types.js"; +export { ZetaIconNameList } from "./outputs/web/icon-types.js"; const convertedIconManifest = new Map(Object.entries(iconManifest)) as IconManifest; export { convertedIconManifest as iconManifest }; -export type { ZetaIconName } from "./outputs/definitions/icon-types.js"; +export type { ZetaIconName } from "./outputs/web/icon-types.js"; export type * from "./scripts/types/customTypes.js";