fixed syntax

This commit is contained in:
Surferlul 2023-10-10 04:09:37 +02:00
parent 19729158f0
commit 756a869c44

View File

@ -1,18 +1,17 @@
name: Logseq Excalidraw to SVG name: Logseq Excalidraw to SVG
run-name: Convert excalidraw to svg references description: Converts excalidraw to svg references
on: [push] runs:
jobs: using: composite
Excalidraw-To-SVG: steps:
runs-on: ubuntu-latest - name: Check out repository code
steps: uses: actions/checkout@v4
- name: Check out repository code - name: Set up Python 3.12
uses: actions/checkout@v4 uses: actions/setup-python@v4
- name: Set up Python 3.12 with:
uses: actions/setup-python@v4 # Semantic version range syntax or exact version of a Python version
with: python-version: '3.12'
# Semantic version range syntax or exact version of a Python version # Optional - x64 or x86 architecture, defaults to x64
python-version: '3.12' architecture: 'x64'
# Optional - x64 or x86 architecture, defaults to x64 - run: python main.py ${{ github.workspace }}
architecture: 'x64' shell: bash
- run: python main.py ${{ github.workspace }}