fix: remove variable interpolation

This commit is contained in:
bo0tzz 2025-07-18 15:23:16 +02:00
parent 17964cdba0
commit d024252afd
No known key found for this signature in database

View File

@ -37,13 +37,15 @@ runs:
- name: Convert filters to JSON - name: Convert filters to JSON
id: convert-filters id: convert-filters
shell: python shell: python
env:
FILTERS: ${{ inputs.filters }}
run: | run: |
import json import json
import os import os
import yaml import yaml
# Get the filters input # Get the filters input
filters_yaml = """${{ inputs.filters }}""" filters_yaml = os.environ['FILTERS']
try: try:
# Parse YAML properly using the yaml library # Parse YAML properly using the yaml library