Skip to content

Commit

Permalink
🧹 print version when we build mondoo package
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-rock committed Oct 6, 2023
1 parent 9193625 commit ebdd9a9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release_mondoo_pkgs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
exit 1
fi
TRIM_VERSION=$(echo $VERSION | sed 's/v//g')
echo "version=$TRIM_VERSION" >> $GITHUB_OUTPUT
echo "VERSION=$TRIM_VERSION" >> $GITHUB_OUTPUT
- name: Create destination folder
run: |
cd helper
Expand Down
2 changes: 1 addition & 1 deletion helper/build_debs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ if [[ ${VERSION} == "" ]]; then
export VERSION=0.0.1
fi

echo "--------- Creating Debian Package ${PKG_NAME}"
echo "--------- Creating Debian Package ${PKG_NAME} ${VERSION} ---------"

# Create the package directory:
mkdir ${PKG_NAME}
Expand Down
2 changes: 1 addition & 1 deletion helper/build_rpms.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ MONDOO_VERSION=$VERSION
OUTDIR=packages
mkdir -p ${OUTDIR}

echo "--------- Creating RPM Package"
echo "--------- Creating RPM Package mondoo ${MONDOO_VERSION} ---------"

SCRIPT_LOCATION=$(readlink -f "$0")
REPO_DIR=$(dirname "${SCRIPT_LOCATION}")
Expand Down

0 comments on commit ebdd9a9

Please sign in to comment.