mirror of
https://github.com/immich-app/immich.git
synced 2025-08-11 09:16:31 -04:00
fix: remove variable interpolation
This commit is contained in:
parent
17964cdba0
commit
d024252afd
4
.github/actions/pre-job/action.yml
vendored
4
.github/actions/pre-job/action.yml
vendored
@ -37,13 +37,15 @@ runs:
|
||||
- name: Convert filters to JSON
|
||||
id: convert-filters
|
||||
shell: python
|
||||
env:
|
||||
FILTERS: ${{ inputs.filters }}
|
||||
run: |
|
||||
import json
|
||||
import os
|
||||
import yaml
|
||||
|
||||
# Get the filters input
|
||||
filters_yaml = """${{ inputs.filters }}"""
|
||||
filters_yaml = os.environ['FILTERS']
|
||||
|
||||
try:
|
||||
# Parse YAML properly using the yaml library
|
||||
|
Loading…
x
Reference in New Issue
Block a user