Create action.yml

This commit is contained in:
Lu Baumann 2023-10-20 02:56:02 +02:00 committed by GitHub
parent 36f016e224
commit f9b82abafa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

11
action.yml Normal file
View File

@ -0,0 +1,11 @@
name: Logseq adjust Content Width
description: A postprocessor for logseq-spa. Adjusts the width of the website content
inputs:
content-width:
description: If drawings should be exported in dark mode
required: true
runs:
using: composite
steps:
- name: Replace content width css
run: sed -ri 's|--ls-main-content-max-width:\s*\w*|--ls-main-content-max-width:${{ inputs.content-width }}|g' "${{ github.workspace }}/www/static/css/style.css"