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 a1378d8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/build_pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ jobs:
build_options: ${{ steps.build.outputs.build_options }}
release: ${{ steps.release.outputs.release }}
runs-on: ubuntu-latest
if: github.ref_type == 'tag'
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -70,6 +71,7 @@ jobs:
GITHUB_REF_TYPE: ${{ github.ref_type }}
GITHUB_REF_NAME: ${{ github.ref_name }}
run: |
echo $GITHUB_REF_TYPE
version=""
[ "$GITHUB_REF_TYPE" == "tag" ] && version=${GITHUB_REF_NAME#*/}
pkg="$(podman run \
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 a1378d8

Please sign in to comment.