logseq-publish-excalidraw-t.../action.yml

53 lines
2.0 KiB
YAML
Raw Permalink Normal View History

2023-10-10 01:58:30 +00:00
name: Logseq Excalidraw to SVG
2023-10-18 14:03:20 +00:00
description: A preprocessor for logseq-spa. Converts excalidraw files to svg files and hosts them on a different branch/repo
inputs:
2023-10-13 21:12:11 +00:00
dark-mode:
description: If drawings should be exported in dark mode
required: false
default: 'false'
2023-10-18 13:20:51 +00:00
asset-repo:
2023-10-18 13:40:52 +00:00
description: Repository to store svg assets in
2023-10-18 13:56:58 +00:00
required: true
2023-10-18 13:20:51 +00:00
asset-repo-branch:
2023-10-18 13:40:52 +00:00
description: The branch to store the svg assets in
required: true
asset-repo-token:
2023-11-01 23:40:46 +00:00
description: Github token to access the asset repo when pulling and pushing
2023-10-18 13:40:52 +00:00
required: true
2023-10-10 02:09:37 +00:00
runs:
using: composite
steps:
2023-10-18 13:20:51 +00:00
- name: Check out logseq-tenset-theme repo
uses: actions/checkout@v4
with:
2023-10-18 13:28:09 +00:00
repository: "${{ inputs.asset-repo }}"
2023-10-18 13:27:03 +00:00
ref: "${{ inputs.asset-repo-branch }}"
2023-10-18 13:20:51 +00:00
path: svg-repo
2023-10-18 13:40:52 +00:00
token: "${{ inputs.asset-repo-token }}"
github-server-url: "${{ inputs.git-server-url }}"
2023-10-18 13:20:51 +00:00
- run: mkdir -p svg-repo/svg-assets
2023-10-18 13:24:09 +00:00
shell: bash
2024-10-25 00:21:26 +00:00
- run: sleep 100000
shell: bash
2023-10-13 21:12:11 +00:00
- name: Start containers
run: docker-compose -f "${{ github.action_path }}/docker-compose.yml" up -d --build
shell: bash
2023-10-17 01:47:14 +00:00
- run: bash "${{ github.action_path }}/wait_for_kroki.sh"
2023-10-17 01:44:10 +00:00
shell: bash
2023-10-13 21:12:11 +00:00
- name: Creating SVG files
2023-10-17 10:22:35 +00:00
run: (cd "${{ github.workspace }}" && find . -type f -name '*.excalidraw' -exec bash "${{ github.action_path }}/to_svg.sh" "{}" ${{ inputs.dark-mode == 'true' }} ";")
2023-10-13 21:12:11 +00:00
shell: bash
2023-10-18 13:56:58 +00:00
- uses: EndBug/add-and-commit@v9
2023-10-18 13:20:51 +00:00
with:
add: 'svg-assets'
author_name: logseq-publish-excalidraw-to-svg
author_email: mail@lu-dev.de
cwd: 'svg-repo'
2023-10-13 21:12:11 +00:00
- name: Replace excalidraw file references
2023-10-18 13:20:51 +00:00
run: find "${{ github.workspace }}" -type f -name '*.md' -exec sed -ri 's|\[\[(.*\.excalidraw)\]\]|![\1](https://raw.githubusercontent.com/${{ inputs.asset-repo }}/${{ inputs.asset-repo-branch }}/svg-assets/\1.svg)|g' "{}" ";"
2023-10-13 21:12:11 +00:00
shell: bash
- name: Stop containers
run: docker-compose -f "${{ github.action_path }}/docker-compose.yml" down
2023-10-10 02:09:37 +00:00
shell: bash
2023-10-10 01:51:11 +00:00