Skip to content

Commit

Permalink
Add debug output to manual-multiarch-build action
Browse files Browse the repository at this point in the history
  • Loading branch information
m-ueberall committed Sep 21, 2021
1 parent b7f5e43 commit 71a4deb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .ci/build.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#! /bin/bash
if [[ "$1" == "--debug" ]]; then set -x; shift; fi

#the below is supposed to handle both tags, branches when specified as argument:
PACKAGE_VERSION="${1:-v0.0.0}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/manual-multiarch-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
with:
fetch-depth: 0

- name: Check environment
- name: Check/prepare environment
run: |
.ci/check-environment.sh
- name: Build everything
run: |
.ci/build.sh "${{ steps.get_version.outputs.VERSION }}"
.ci/build.sh --debug "${{ steps.get_version.outputs.VERSION }}"

0 comments on commit 71a4deb

Please sign in to comment.