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
|
- 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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user