Skip to content

Commit

Permalink
Fix typo related to debian_source
Browse files Browse the repository at this point in the history
  • Loading branch information
nanory authored and alee-ntap committed Nov 27, 2023
1 parent 4612bbf commit 8ff1f4a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/build_pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ jobs:
repository: ${{ inputs.repository }}
ref: ${{ inputs.ref }}
path: input
- name: Exit if not triggered by tag
if: startsWith(github.ref, 'refs/tags/') == false
run: exit -1
- name: pull build container
run: podman pull "${{ inputs.build_container }}:amd64"
- name: fetch dependencies
Expand Down
2 changes: 1 addition & 1 deletion container/bin/build_source
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ main() (
# Init some variables
name="$(yq -r '.name' < "$inputs_file")"
source="$(yq -r --arg name "$name" '.jobs[$name].with.source // "'$name'"' < "$inputs_file")"
debian_source="$(yq -r --arg name "$name" '.jobs[$name].with.debian_src // "'$debian_source'"' < "$inputs_file")"
debian_source="$(yq -r --arg name "$name" '.jobs[$name].with.debian_source // "'$debian_source'"' < "$inputs_file")"
build_options="terse $(yq -r --arg name "$name" '.jobs[$name].with.build_options // ""' < "$inputs_file")"

# Define Build Options
Expand Down

0 comments on commit 8ff1f4a

Please sign in to comment.