18 lines
558 B
YAML
18 lines
558 B
YAML
name: Logseq Excalidraw to SVG
|
|
description: Converts excalidraw to svg references
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v4
|
|
- name: Set up Python 3.12
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
# Semantic version range syntax or exact version of a Python version
|
|
python-version: '3.12'
|
|
# Optional - x64 or x86 architecture, defaults to x64
|
|
architecture: 'x64'
|
|
- run: python ${{ github.action_path }}/main.py ${{ github.workspace }}
|
|
shell: bash
|
|
|