We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ca08110 + 2e7e6b6 commit 7e5b1f8Copy full SHA for 7e5b1f8
.github/workflows/build-overlay-deb.yml
@@ -51,7 +51,7 @@ jobs:
51
DEBIAN_FRONTEND=noninteractive \
52
apt -y install --no-install-recommends python3 python3-yaml
53
# read suite from yaml
54
- suite="$(python3 -c "import yaml; print(yaml.safe_load(open('${CONFIG_PATH}'))['suite'])")"
+ suite="$(python3 -c "import yaml; print(yaml.safe_load(open('${{ inputs.config }}'))['suite'])")"
55
# defaults args
56
extra_repo=""
57
debootstrap_suite="${suite}"
@@ -80,7 +80,7 @@ jobs:
80
mkdir -v upload
81
chmod a+rw upload
82
sudo -u builder python3 scripts/build-deb.py \
83
- --config "${CONFIG_PATH}" --output-dir upload
+ --config "${{ inputs.config }}" --output-dir upload
84
85
- name: Upload as private artifacts
86
uses: qualcomm-linux/upload-private-artifact-action@v1
0 commit comments